Skip to content

Commit 57f3694

Browse files
committed
Adding depencies, changelog
1 parent ad5a36b commit 57f3694

4 files changed

Lines changed: 13 additions & 4 deletions

File tree

CHANGES.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,10 @@ mast
147147
default can be overridden by setting the ``enable_cloud_dataset`` configuration option to False. [#3534]
148148
- Results returned from ``MastMissions`` metadata query functions now include search parameters in the metadata of the ``astropy.table.Table`` object
149149
and column descriptions in the column metadata. [#3588]
150-
- Added ``pass_id`` as an alias for the ``pass`` column in query functions for the Roman mission to avoid conflicts with
150+
- Added ``pass_id`` as an alias for the ``pass`` column in query functions for the Roman mission to avoid conflicts with
151151
the reserved Python keyword. [#3588]
152+
- Added the ``MastMissions.read_product`` method to read data products directly into memory as an `~astropy.io.fits.HDUList`
153+
or an `~asdf.AsdfFile` object. [#3593]
152154

153155

154156
jplspec

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ already installed, please make sure you use the ``--upgrade`` (or ``-U``) instal
4040
$ python -m pip install -U --pre astroquery
4141
4242
To install all the mandatory and optional dependencies add the ``[all]``
43-
identifyer to the pip command above (or use ``[docs]`` or ``[test]`` for the
43+
identifier to the pip command above (or use ``[docs]`` or ``[test]`` for the
4444
dependencies required to build the documentation or run the tests):
4545

4646
.. code-block:: bash

pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ test = [
4242
# Temp workaround for https://github.com/RKrahl/pytest-dependency/issues/91
4343
"pytest-dependency; platform_system != 'Windows'",
4444
"pytest-rerunfailures",
45-
"fsspec[http]",
45+
"fsspec[http,s3]",
4646
"moto[s3]",
47-
"s3fs",
47+
"asdf"
4848
]
4949
docs = [
5050
"sphinx",
@@ -62,6 +62,11 @@ all = [
6262
"boto3",
6363
"botocore",
6464
"regions>=0.5",
65+
"asdf",
66+
"lz4",
67+
"gwcs",
68+
"roman_datamodels",
69+
"fsspec[http,s3]"
6570
]
6671

6772
[build-system]

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ deps =
5353
oldestdeps-alldeps: mocpy==0.12
5454
oldestdeps-alldeps: regions==0.5
5555
oldestdeps-alldeps: astropy-healpix==0.7
56+
oldestdeps-alldeps: roman_datamodels==0.11
57+
oldestdeps-alldeps: gwcs==0.18
5658

5759
online: pytest-custom_exit_code
5860

0 commit comments

Comments
 (0)