pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/math/py-astropy
Module Name: pkgsrc
Committed By: adam
Date: Thu Aug 31 14:01:37 UTC 2023
Modified Files:
pkgsrc/math/py-astropy: Makefile PLIST distinfo
Log Message:
py-astropy: updated to 5.3.2
Version 5.3.2 (2023-08-11)
==========================
Bug Fixes
---------
astropy.coordinates
^^^^^^^^^^^^^^^^^^^
- Fixed import when called with Python ``-OO`` flag.
astropy.nddata
^^^^^^^^^^^^^^
- Fix for collapse operations on ``NDData`` without masks or units.
astropy.units
^^^^^^^^^^^^^
- Modified the implementation of ``np.power()`` for instances of ``Quantity`` to
allow any array as the second operand if all its elements have the same value.
Version 5.3.1 (2023-07-06)
==========================
Bug Fixes
---------
astropy.cosmology
^^^^^^^^^^^^^^^^^
- The exponent in ``wowzCDM.de_density_scale`` has been corrected to 3, from -3.
astropy.io.fits
^^^^^^^^^^^^^^^
- Fix crash when a PrimaryHDU has a GROUPS keyword with a non-boolean value (i.e.
not a random-groups HDU).
- Fixed a bug that caused ``Cutout2D`` to not work correctly with ``CompImageHDU.section``
- Fixed a bug that caused compressed images with TFORM missing the optional '1' prefix to not be readable.
astropy.modeling
^^^^^^^^^^^^^^^^
- All models can be pickled now.
astropy.nddata
^^^^^^^^^^^^^^
- Restore bitmask propagation behavior in ``NDData.mask``, plus a fix
for arithmetic between masked and unmasked ``NDData`` objects.
astropy.table
^^^^^^^^^^^^^
- Fix a bug where table indexes were not using a stable sort order. This was causing the
order of rows within groups to not match the original table order when an indexed table
was grouped.
astropy.units
^^^^^^^^^^^^^
- In VOunits, "pix", "au", "a", and "ct" are removed from the list of deprecated units.
Version 5.3 (2023-05-22)
========================
New Features
------------
astropy.coordinates
^^^^^^^^^^^^^^^^^^^
- Add optional parameter ``refresh_cache`` to ``EarthLocation.of_site()`` and
``EarthLocation.get_site_names()`` to force the download of the latest site
registry.
- Added ``atol`` argument to function ``is_O3`` and ``is_rotation`` in matrix utilities.
- A new class ``astropy.coordinates.StokesCoord`` has been added to represent world coordinates describing polarization state.
This change introduces a breaking change to the return value of ``astropy.wcs.WCS.pixel_to_world`` where before a ``u.Quantity`` object would be returned containing numerical values representing a
Stokes profile now a ``StokesCoord`` object is returned. The previous numerical values can be accessed with ``StokesCoord.value``.
- Add an optional parameter ``location`` to ``EarthLocation.get_itrs()``
to allow the generation of topocentric ITRS coordinates with respect
to a specific location.
astropy.cosmology
^^^^^^^^^^^^^^^^^
- Two new cosmologies have been added, ``FlatwpwaCDM`` and ``Flatw0wzCDM``, which are the
flat variants of ``wpwaCDM`` and ``w0wzCDM``, respectively.
astropy.io.ascii
^^^^^^^^^^^^^^^^
- Add ability to read and write an RST (reStructuredText) ASCII table that
includes additional header rows specifying any or all of the column dtype, unit,
format, and description. This is available via the new ``header_rows`` keyword
argument.
astropy.io.fits
^^^^^^^^^^^^^^^
- Added support for >3D data in CompImageHDU
- Added a ``CompImageHDU.section`` property which can be used to
efficiently access subsets of the data, similarly to ``ImageHDU.section``.
When using this, only the tiles required to cover the section are
read from disk and decompressed.
- Added support for ``'NOCOMPRESS'`` for the ``compression_type`` option in ``CompImageHDU``.
- Added new properties ``compression_type`` and ``tile_shape`` on
``CompImageHDU``, giving the name of the compression algorithm
and the shape of the tiles in the tiled compression respectively.
- Do not call ``gc.collect()`` when closing a ``CompImageHDU`` object as it has a
large performance penalty.
- VLA tables can now be written with the unified I/O interface.
When object types are present or the VLA contains different types a `TypeError`
is thrown.
astropy.io.misc
^^^^^^^^^^^^^^^
- Add support for writing/reading fixed-size and variable-length array columns to the parquet formatter.
astropy.io.votable
^^^^^^^^^^^^^^^^^^
- Added a method ``get_infos_by_name`` to make it easier to implement
DALI-compliant protocols
- Updating the built-in UCD list to upstream 1.5 (which requires a minor
update to the parser)
astropy.modeling
^^^^^^^^^^^^^^^^
- Enable check for poorly conditioned fits in ``LinearLSQFitter`` for polynomial
models with fixed inputs.
astropy.nddata
^^^^^^^^^^^^^^
- ``astropy.nddata.NDDataArray`` now has collapsing methods like ``sum``,
``mean``, ``min``, and ``max`` which operate along any axes, and better
support for ``astropy.utils.Masked`` objects.
astropy.stats
^^^^^^^^^^^^^
- ``vonmisesmle`` has now functioning "weights" and "axis" parameters that work equivalently
to the rest of the functions in the ``circstats`` module (``circmean``, ``rayleightest``, etc.)
astropy.table
^^^^^^^^^^^^^
- ``Table`` and ``QTable`` can now use the ``|`` and ``|=`` operators for
dictionary-style merge and update.
astropy.time
^^^^^^^^^^^^
- Add a ``leap_second_strict`` argument to the ``Time.to_datetime()`` method. This
controls the behavior when converting a time within a leap second to the ``datetime``
format and can take the values ``raise`` (the default), ``warn``, or ``silent``.
astropy.timeseries
^^^^^^^^^^^^^^^^^^
- Adds the ``astropy.timeseries.LombScargleMultiband`` class, which is an
extension of the ``astropy.timeseries.LombScargle`` class. It enables the
generation of periodograms for datasets with measurements taken in more than
one photometric band.
- Add ``unit_parse_strict`` parameter to the Kepler reader to control the warnings
emitted when reading files.
astropy.units
^^^^^^^^^^^^^
- Add support for degrees Celsius for FITS. Parsing "Celsius" and "deg C" is now
supported and astropy will output "Celsius" into FITS.
Note that "deg C" is only provided for compatibility with existing FITS files,
as it does not conform to the normal unit standard, where this should be read
as "degree * Coulomb". Indeed, compound units like "deg C kg-1" will still be
parsed as "Coulomb degree per kilogram".
- Enabled the ``equal_nan`` keyword argument for ``np.array_equal()`` when the
arguments are ``astropy.units.Quantity`` instances.
- Allow "console" and "unicode" formats for conversion to string of
function units.
- Add a "fraction" options to all the unit ``format`` classes, which determine
whether, if a unit has bases raised to a negative power, a string
representation should just show the negative powers (``fraction=False``) or
use a fraction, and, in the latter case, whether to use a single-line
representation using a solidus (``fraction='inline'`` or ``fraction=True``)
or, if the format supports it, a multi-line presentation with the numerator
and denominator separated by a horizontal line (``fraction='multiline'``).
astropy.utils
^^^^^^^^^^^^^
- The ``mean`` method on ``NDDataArray`` now avoids a division by zero
warning when taking the mean of a fully-masked slice (and still
returns ``np.nan``).
- Ensure we can read the newer ``IERS_B`` files produced by the International
Earth Rotation and Reference Systems Service, and point
``astropy.utils.iers.IERS_B_URL`` to the new location.
API Changes
-----------
astropy.coordinates
^^^^^^^^^^^^^^^^^^^
- ``get_moon()`` is deprecated and may be removed in a future version of
``astropy``. Calling ``get_moon(...)`` should be replaced with
``get_body("moon", ...)``.
astropy.io.fits
^^^^^^^^^^^^^^^
- Deprecate the auto-fixing of tile sizes for HCOMPRESS_1 tiled
image compression when the tile size could be changed by +1
to make it acceptable.
- The ``tile_size=`` argument to ``CompImageHDU`` has been deprecated
as it was confusing that it was required to be in the opposite
order to the data shape (it was in header rather than Numpy order).
Instead, users should make use of the ``tile_shape=`` argument which
is in Numpy shape order.
astropy.modeling
^^^^^^^^^^^^^^^^
- Deprecate the ``humlicek2`` method for `~astropy.modeling.functional_models.Voigt1D` in favor
of using the ``wofz`` method using the `scipy.special.wofz` implementation of the
Fadeeva function whenever `scipy` is installed.
- Deprecated ``astropy.modeling.utils.comb()`` function in favor of ``comb()``
from ``math`` standard library.
- Propagate measurement uncertainties via the ``weights`` keyword argument into the
parameter covariances.
astropy.units
^^^^^^^^^^^^^
- The conversion of ``astropy.units.Quantity`` to ``bool``
that was deprecated since astropy 3.0 now raises a ``ValueError``.
This affects statements like ``if quantity``.
Use explicit comparisons like ``if quantity.value != 0``
or ``if quantity is not None`` instead.
- Operations on ``Quantity`` in tables are sped up by only copying ``info`` when
it makes sense (i.e., when the object can still logically be thought of as the
same, such as in unit changes or slicing). ``info`` is no longer copied if a
``Quantity`` is part of an operation.
- The ``Quantity.nansum`` method has been deprecated. It was always weird that it
was present, since ``ndarray`` does not have a similar method, and the other
``nan*`` functions such as ``nanmean`` did not have a corresponding method.
Use ``np.nansum(quantity)`` instead.
- The unused ``units.format.Unscaled`` format class has been deprecated.
- The order in which unit bases are displayed has been changed to match the
order bases are stored in internally, which is by descending power to which
the base is raised, and alphabetical after. This helps avoid monstrosities
like ``beam^-1 Jy`` for ``format='fits'``.
Note that this may affect doctests that use quantities with complicated units.
astropy.utils
^^^^^^^^^^^^^
- For ``Masked`` instances, the ``where`` argument for any ufunc can now
also be masked (with any masked elements masked in the output as well).
This is not very useful in itself, but avoids problems in conditional
functions (like ``np.add(ma, 1, where=ma>10)``).
astropy.visualization
^^^^^^^^^^^^^^^^^^^^^
- The pixel attribute of ``astropy.visualization.wcsaxes.frame.Spine`` is deprecated
and will be removed in a future astropy version.
Because it is (in general) not possible to correctly calculate pixel
coordinates before Matplotlib is drawing a figure, instead set the world or data
coordinates of the ``Spine`` using the appropriate setters.
- Passing a bare number as the ``coord_wrap`` argument to ``CoordinateHelper.set_coord_type`` is deprecated.
Pass a ``Quantity`` with units equivalent to angular degrees instead.
The ``.coord_wrap`` attribute of ``CoordinateHelper`` is now a ``Quantity`` instead of a bare number.
Bug Fixes
---------
astropy.coordinates
^^^^^^^^^^^^^^^^^^^
- ``Angle.to_string()`` was changed to ensure it matches the behaviour of
``Quantity.to_string()`` in having a space between the value and the unit
for display with non-degree and hourangle units (i.e., the case in which
units are displayed by their name; the sexagesimal case for degrees or
hourangle that uses symbols is not changed).
astropy.io.ascii
^^^^^^^^^^^^^^^^
- Fix an issue in the ``io.ascii`` QDP format reader to allow lower-case commands in the
table data file. Previously it required all upper case in order to parse QDP files.
astropy.io.fits
^^^^^^^^^^^^^^^
- Compressing/decompressing a floating point dataset containing NaN values will
no longer read in the whole tile as NaNs.
Fixed segmentation faults that occurred when compressing/decompressing data
with the PLIO_1 algorithm.
- ``Card`` now uses the default Python representation for floating point
values.
- ``ImageHDU`` now properly rejects Numpy scalars, avoiding data corruption.
- Fix issues with double quotes in CONTINUE cards.
- Fixes an issue where FITS_rec was incorrectly raising a ValueError exception when the heapsize was greater than 2**31
when the Column type was 'Q' instead of 'P'.
astropy.io.misc
^^^^^^^^^^^^^^^
- Columns with big-endian byte ordering (such as those read in from a FITS table) can now be serialized with Parquet.
astropy.modeling
^^^^^^^^^^^^^^^^
- Bugfix for using ``getter/setter`` in properties to adjust the internal (computational)
value of a property vs its external proxy value when the values involve units.
- Fix issue with ``filter_non_finite`` option when fitting with ``weights`` via passing
the ``weights`` through the non-finite-filter alongside the input data.
- Fixed an issue with Parameter where a getter could be input without a
setter (or vice versa).
astropy.time
^^^^^^^^^^^^
- Using quantities with units of time for ``Time`` format 'decimalyear' will now
raise an error instead of converting the quantity to days and then
interpreting the value as years. An error is raised instead of attempting to
interpret the unit as years, since the interpretation is ambiguous: in
'decimaltime' years are equal to 365 or 366 days, while for regular time units
the year is defined as 365.25 days.
astropy.uncertainty
^^^^^^^^^^^^^^^^^^^
- Ensure that ``Distribution`` can be compared with ``==`` and ``!=``
with regular arrays or scalars, and that inplace operations like
``dist[dist<0] *= -1`` work.
astropy.units
^^^^^^^^^^^^^
- Modified ``astropy.units.Quantity.__array_ufunc__()`` to return ``NotImplemented`` instead of raising a ``ValueError`` if the inputs are incompatible.
- Modified the behavior of ``numpy.array_equal()`` and ``numpy.array_equiv()`` to
return ``False`` instead of raising an error if their arguments are
``astropy.units.Quantity`` instances with incompatible units.
- Spaces have been regularized for the ``unicode`` and ``console`` output
formats: no extraneous spaces in front of the unit, and always a space
between a possible scale factor and the unit.
- Prefixed degrees and arcmin are now typeset without using the symbol in
``latex`` and ``unicode`` formats (i.e., ``mdeg`` instead of ``m°``),
as was already the case for arcsec.
- Ensure the unit is kept in ``np.median`` even if the result is a scalar ``nan``
(the unit was lost for numpy < 1.22).
- Ensure that ``Quantity`` with structured dtype can be set using non-structured
``Quantity`` (if units match), and that structured dtype names are inferred
correctly in the creation of ``StructuredUnit``, thus avoiding mismatches
when setting units.
astropy.utils
^^^^^^^^^^^^^
- When using astropy in environments with sparse file systems (e.g., where the temporary directory and astropy data directory resides in different volumes), ``os.rename`` may fail with ``OSError:
[Errno 18] Invalid cross-device link``.
This may affect some clean-up operations executed by the ``data`` module, causing them to fail.
This patch is to catch ``OSError`` with ``errno == EXDEV`` (i.e., Errno 18) when performing these operations and try to use ``shutil.move`` instead to relocate the data.
- Ensure masks are propagated correctly for ``outer`` methods of ufuncs also if
one of the inputs is not actually masked.
astropy.visualization
^^^^^^^^^^^^^^^^^^^^^
- The location of a ``astropy.visualization.wcsaxes.frame.Spine`` in a plot is now
correctly calculated when the DPI of a figure changes between a WCSAxes being
created and the figure being drawn.
- ``CoordinateHelper.set_ticks()`` now accepts ``number=0``. Previously it errored.
- ``WCSAxes.plot_coord`` and ``plot_scatter`` now work correctly for APE 14 compliant WCSes where the units are not always converted to degrees.
- Fixed a bug where coordinate overlays did not automatically determine the
longitude wrap angle or the appropriate units.
astropy.wcs
^^^^^^^^^^^
- Fix bugs with high-level WCS API on ``wcs.WCS`` object when using ``-TAB``
coordinates.
- Fixed a bug in how WCS handles ``PVi_ja`` header coefficients when ``CTYPE``
has ``-SIP`` suffix and in how code detects TPV distortions.
Other Changes and Additions
---------------------------
- The minimum supported version of Python is now 3.9, changing from 3.8.
- The minimum supported version of Numpy is now 1.21.
- The minimum supported version of matplotlib is now 3.3.
- ``astropy`` no longer publishes wheels for i686 architecture.
- Added a pre-commit configuration for codespell.
- Removed a large fraction of the bundled CFITSIO code and internally refactored
FITS compression-related code, which has resulted in a speedup when compiling
astropy from source (40% faster in some cases).
- The CFITSIO library is no longer bundled in full with astropy and
the option to build against an external installation of CFITSIO
has now been removed, so the ASTROPY_USE_SYSTEM_CFITSIO environment
variable will be ignored during building.
- Updated CDS URL for Sesame look-up as the old URL is deprecated.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/math/py-astropy/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/math/py-astropy/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/math/py-astropy/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/math/py-astropy/Makefile
diff -u pkgsrc/math/py-astropy/Makefile:1.8 pkgsrc/math/py-astropy/Makefile:1.9
--- pkgsrc/math/py-astropy/Makefile:1.8 Tue Aug 1 23:20:46 2023
+++ pkgsrc/math/py-astropy/Makefile Thu Aug 31 14:01:37 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2023/08/01 23:20:46 wiz Exp $
+# $NetBSD: Makefile,v 1.9 2023/08/31 14:01:37 adam Exp $
-DISTNAME= astropy-5.0.4
+DISTNAME= astropy-5.3.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_PYPI:=a/astropy/}
@@ -10,33 +10,18 @@ HOMEPAGE= https://www.astropy.org/
COMMENT= Python module for astronomical calculations and data analysis
LICENSE= modified-bsd
-DEPENDS+= libxml2>=2.9.10:../../textproc/libxml2
-DEPENDS+= ${PYPKGPREFIX}-numpy>=1.18.0:../../math/py-numpy
-DEPENDS+= ${PYPKGPREFIX}-scipy>=1.3:../../math/py-scipy
-DEPENDS+= ${PYPKGPREFIX}-h5py>=2.9.0:../../devel/py-h5py
-DEPENDS+= ${PYPKGPREFIX}-beautifulsoup4>=4.9.3:../../www/py-beautifulsoup4
-DEPENDS+= ${PYPKGPREFIX}-html5lib>=1.0.1:../../textproc/py-html5lib
-DEPENDS+= ${PYPKGPREFIX}-bleach>=3.2.1:../../www/py-bleach
DEPENDS+= ${PYPKGPREFIX}-yaml>=3.13:../../textproc/py-yaml
-DEPENDS+= ${PYPKGPREFIX}-pandas>=0.14:../../math/py-pandas
-DEPENDS+= ${PYPKGPREFIX}-sortedcontainers>=2.2.2:../../devel/py-sortedcontainers
-DEPENDS+= ${PYPKGPREFIX}-pytz>=2020.4:../../time/py-pytz
-DEPENDS+= ${PYPKGPREFIX}-matplotlib>=3.4.1:../../graphics/py-matplotlib
-DEPENDS+= ${PYPKGPREFIX}-setuptools>=50.3.2:../../devel/py-setuptools
-DEPENDS+= ${PYPKGPREFIX}-mpmath>=1.1.0:../../math/py-mpmath
-DEPENDS+= ${PYPKGPREFIX}-bottleneck>=1.3.2:../../math/py-bottleneck
-DEPENDS+= ${PYPKGPREFIX}-asdf>=2.9.2:../../math/py-asdf
-DEPENDS+= ${PYPKGPREFIX}-extension-helpers>=0.1:../../devel/py-extension-helpers
-DEPENDS+= ${PYPKGPREFIX}-jplephem>=2.15:../../math/py-jplephem
DEPENDS+= ${PYPKGPREFIX}-pyerfa>=2.0.0.1:../../math/py-pyerfa
DEPENDS+= ${PYPKGPREFIX}-packaging>=19.0:../../devel/py-packaging
-DEPENDS+= ${PYPKGPREFIX}-colorlog>=6.6.0:../../devel/py-colorlog
+# recommended
+DEPENDS+= ${PYPKGPREFIX}-scipy>=1.5:../../math/py-scipy
+DEPENDS+= ${PYPKGPREFIX}-matplotlib>=3.5.3:../../graphics/py-matplotlib
-PYTHON_VERSIONS_INCOMPATIBLE= 27 38
+USE_LANGUAGES= c c++
USE_PKG_RESOURCES= yes
-USE_LANGUAGES= c c++
+PYTHON_VERSIONS_INCOMPATIBLE= 27 38
.include "../../lang/python/egg.mk"
.include "../../math/py-numpy/buildlink3.mk"
Index: pkgsrc/math/py-astropy/PLIST
diff -u pkgsrc/math/py-astropy/PLIST:1.2 pkgsrc/math/py-astropy/PLIST:1.3
--- pkgsrc/math/py-astropy/PLIST:1.2 Tue Aug 30 15:54:37 2022
+++ pkgsrc/math/py-astropy/PLIST Thu Aug 31 14:01:37 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2022/08/30 15:54:37 thor Exp $
+@comment $NetBSD: PLIST,v 1.3 2023/08/31 14:01:37 adam Exp $
bin/fits2bitmap
bin/fitscheck
bin/fitsdiff
@@ -19,9 +19,6 @@ ${PYSITELIB}/astropy/CITATION
${PYSITELIB}/astropy/__init__.py
${PYSITELIB}/astropy/__init__.pyc
${PYSITELIB}/astropy/__init__.pyo
-${PYSITELIB}/astropy/_erfa/__init__.py
-${PYSITELIB}/astropy/_erfa/__init__.pyc
-${PYSITELIB}/astropy/_erfa/__init__.pyo
${PYSITELIB}/astropy/_version.py
${PYSITELIB}/astropy/_version.pyc
${PYSITELIB}/astropy/_version.pyo
@@ -29,9 +26,6 @@ ${PYSITELIB}/astropy/compiler_version.so
${PYSITELIB}/astropy/config/__init__.py
${PYSITELIB}/astropy/config/__init__.pyc
${PYSITELIB}/astropy/config/__init__.pyo
-${PYSITELIB}/astropy/config/affiliated.py
-${PYSITELIB}/astropy/config/affiliated.pyc
-${PYSITELIB}/astropy/config/affiliated.pyo
${PYSITELIB}/astropy/config/configuration.py
${PYSITELIB}/astropy/config/configuration.pyc
${PYSITELIB}/astropy/config/configuration.pyo
@@ -250,6 +244,9 @@ ${PYSITELIB}/astropy/coordinates/builtin
${PYSITELIB}/astropy/coordinates/builtin_frames/itrs.py
${PYSITELIB}/astropy/coordinates/builtin_frames/itrs.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/itrs.pyo
+${PYSITELIB}/astropy/coordinates/builtin_frames/itrs_observed_transforms.py
+${PYSITELIB}/astropy/coordinates/builtin_frames/itrs_observed_transforms.pyc
+${PYSITELIB}/astropy/coordinates/builtin_frames/itrs_observed_transforms.pyo
${PYSITELIB}/astropy/coordinates/builtin_frames/lsr.py
${PYSITELIB}/astropy/coordinates/builtin_frames/lsr.pyc
${PYSITELIB}/astropy/coordinates/builtin_frames/lsr.pyo
@@ -304,6 +301,9 @@ ${PYSITELIB}/astropy/coordinates/name_re
${PYSITELIB}/astropy/coordinates/orbital_elements.py
${PYSITELIB}/astropy/coordinates/orbital_elements.pyc
${PYSITELIB}/astropy/coordinates/orbital_elements.pyo
+${PYSITELIB}/astropy/coordinates/polarization.py
+${PYSITELIB}/astropy/coordinates/polarization.pyc
+${PYSITELIB}/astropy/coordinates/polarization.pyo
${PYSITELIB}/astropy/coordinates/representation.py
${PYSITELIB}/astropy/coordinates/representation.pyc
${PYSITELIB}/astropy/coordinates/representation.pyo
@@ -360,6 +360,12 @@ ${PYSITELIB}/astropy/coordinates/tests/a
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_icrs_fk5.py
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_icrs_fk5.pyc
${PYSITELIB}/astropy/coordinates/tests/accuracy/test_icrs_fk5.pyo
+${PYSITELIB}/astropy/coordinates/tests/data/barycorr_bvcs.dat
+${PYSITELIB}/astropy/coordinates/tests/data/barycorr_bvcs_withvels.dat
+${PYSITELIB}/astropy/coordinates/tests/data/jpl_moon.dat
+${PYSITELIB}/astropy/coordinates/tests/helper.py
+${PYSITELIB}/astropy/coordinates/tests/helper.pyc
+${PYSITELIB}/astropy/coordinates/tests/helper.pyo
${PYSITELIB}/astropy/coordinates/tests/test_angle_generators.py
${PYSITELIB}/astropy/coordinates/tests/test_angle_generators.pyc
${PYSITELIB}/astropy/coordinates/tests/test_angle_generators.pyo
@@ -387,6 +393,9 @@ ${PYSITELIB}/astropy/coordinates/tests/t
${PYSITELIB}/astropy/coordinates/tests/test_earth.py
${PYSITELIB}/astropy/coordinates/tests/test_earth.pyc
${PYSITELIB}/astropy/coordinates/tests/test_earth.pyo
+${PYSITELIB}/astropy/coordinates/tests/test_earth_orientation.py
+${PYSITELIB}/astropy/coordinates/tests/test_earth_orientation.pyc
+${PYSITELIB}/astropy/coordinates/tests/test_earth_orientation.pyo
${PYSITELIB}/astropy/coordinates/tests/test_erfa_astrom.py
${PYSITELIB}/astropy/coordinates/tests/test_erfa_astrom.pyc
${PYSITELIB}/astropy/coordinates/tests/test_erfa_astrom.pyo
@@ -429,6 +438,9 @@ ${PYSITELIB}/astropy/coordinates/tests/t
${PYSITELIB}/astropy/coordinates/tests/test_pickle.py
${PYSITELIB}/astropy/coordinates/tests/test_pickle.pyc
${PYSITELIB}/astropy/coordinates/tests/test_pickle.pyo
+${PYSITELIB}/astropy/coordinates/tests/test_polarization.py
+${PYSITELIB}/astropy/coordinates/tests/test_polarization.pyc
+${PYSITELIB}/astropy/coordinates/tests/test_polarization.pyo
${PYSITELIB}/astropy/coordinates/tests/test_regression.py
${PYSITELIB}/astropy/coordinates/tests/test_regression.pyc
${PYSITELIB}/astropy/coordinates/tests/test_regression.pyo
@@ -489,24 +501,108 @@ ${PYSITELIB}/astropy/cosmology/connect.p
${PYSITELIB}/astropy/cosmology/core.py
${PYSITELIB}/astropy/cosmology/core.pyc
${PYSITELIB}/astropy/cosmology/core.pyo
-${PYSITELIB}/astropy/cosmology/flrw.py
-${PYSITELIB}/astropy/cosmology/flrw.pyc
-${PYSITELIB}/astropy/cosmology/flrw.pyo
-${PYSITELIB}/astropy/cosmology/funcs.py
-${PYSITELIB}/astropy/cosmology/funcs.pyc
-${PYSITELIB}/astropy/cosmology/funcs.pyo
+${PYSITELIB}/astropy/cosmology/data/Planck13.ecsv
+${PYSITELIB}/astropy/cosmology/data/Planck15.ecsv
+${PYSITELIB}/astropy/cosmology/data/Planck18.ecsv
+${PYSITELIB}/astropy/cosmology/data/WMAP1.ecsv
+${PYSITELIB}/astropy/cosmology/data/WMAP3.ecsv
+${PYSITELIB}/astropy/cosmology/data/WMAP5.ecsv
+${PYSITELIB}/astropy/cosmology/data/WMAP7.ecsv
+${PYSITELIB}/astropy/cosmology/data/WMAP9.ecsv
+${PYSITELIB}/astropy/cosmology/flrw/__init__.py
+${PYSITELIB}/astropy/cosmology/flrw/__init__.pyc
+${PYSITELIB}/astropy/cosmology/flrw/__init__.pyo
+${PYSITELIB}/astropy/cosmology/flrw/base.py
+${PYSITELIB}/astropy/cosmology/flrw/base.pyc
+${PYSITELIB}/astropy/cosmology/flrw/base.pyo
+${PYSITELIB}/astropy/cosmology/flrw/lambdacdm.py
+${PYSITELIB}/astropy/cosmology/flrw/lambdacdm.pyc
+${PYSITELIB}/astropy/cosmology/flrw/lambdacdm.pyo
+${PYSITELIB}/astropy/cosmology/flrw/scalar_inv_efuncs.so
+${PYSITELIB}/astropy/cosmology/flrw/tests/__init__.py
+${PYSITELIB}/astropy/cosmology/flrw/tests/__init__.pyc
+${PYSITELIB}/astropy/cosmology/flrw/tests/__init__.pyo
+${PYSITELIB}/astropy/cosmology/flrw/tests/conftest.py
+${PYSITELIB}/astropy/cosmology/flrw/tests/conftest.pyc
+${PYSITELIB}/astropy/cosmology/flrw/tests/conftest.pyo
+${PYSITELIB}/astropy/cosmology/flrw/tests/data/cosmo_closed.ecsv
+${PYSITELIB}/astropy/cosmology/flrw/tests/data/cosmo_flat.ecsv
+${PYSITELIB}/astropy/cosmology/flrw/tests/data/cosmo_open.ecsv
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_base.py
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_base.pyc
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_base.pyo
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_init.py
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_init.pyc
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_init.pyo
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_lambdacdm.py
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_lambdacdm.pyc
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_lambdacdm.pyo
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w.py
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w.pyc
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w.pyo
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w0cdm.py
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w0cdm.pyc
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w0cdm.pyo
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w0wacdm.py
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w0wacdm.pyc
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w0wacdm.pyo
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w0wzcdm.py
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w0wzcdm.pyc
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_w0wzcdm.pyo
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_wpwazpcdm.py
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_wpwazpcdm.pyc
+${PYSITELIB}/astropy/cosmology/flrw/tests/test_wpwazpcdm.pyo
+${PYSITELIB}/astropy/cosmology/flrw/w0cdm.py
+${PYSITELIB}/astropy/cosmology/flrw/w0cdm.pyc
+${PYSITELIB}/astropy/cosmology/flrw/w0cdm.pyo
+${PYSITELIB}/astropy/cosmology/flrw/w0wacdm.py
+${PYSITELIB}/astropy/cosmology/flrw/w0wacdm.pyc
+${PYSITELIB}/astropy/cosmology/flrw/w0wacdm.pyo
+${PYSITELIB}/astropy/cosmology/flrw/w0wzcdm.py
+${PYSITELIB}/astropy/cosmology/flrw/w0wzcdm.pyc
+${PYSITELIB}/astropy/cosmology/flrw/w0wzcdm.pyo
+${PYSITELIB}/astropy/cosmology/flrw/wpwazpcdm.py
+${PYSITELIB}/astropy/cosmology/flrw/wpwazpcdm.pyc
+${PYSITELIB}/astropy/cosmology/flrw/wpwazpcdm.pyo
+${PYSITELIB}/astropy/cosmology/funcs/__init__.py
+${PYSITELIB}/astropy/cosmology/funcs/__init__.pyc
+${PYSITELIB}/astropy/cosmology/funcs/__init__.pyo
+${PYSITELIB}/astropy/cosmology/funcs/comparison.py
+${PYSITELIB}/astropy/cosmology/funcs/comparison.pyc
+${PYSITELIB}/astropy/cosmology/funcs/comparison.pyo
+${PYSITELIB}/astropy/cosmology/funcs/optimize.py
+${PYSITELIB}/astropy/cosmology/funcs/optimize.pyc
+${PYSITELIB}/astropy/cosmology/funcs/optimize.pyo
+${PYSITELIB}/astropy/cosmology/funcs/tests/__init__.py
+${PYSITELIB}/astropy/cosmology/funcs/tests/__init__.pyc
+${PYSITELIB}/astropy/cosmology/funcs/tests/__init__.pyo
+${PYSITELIB}/astropy/cosmology/funcs/tests/test_comparison.py
+${PYSITELIB}/astropy/cosmology/funcs/tests/test_comparison.pyc
+${PYSITELIB}/astropy/cosmology/funcs/tests/test_comparison.pyo
+${PYSITELIB}/astropy/cosmology/funcs/tests/test_funcs.py
+${PYSITELIB}/astropy/cosmology/funcs/tests/test_funcs.pyc
+${PYSITELIB}/astropy/cosmology/funcs/tests/test_funcs.pyo
${PYSITELIB}/astropy/cosmology/io/__init__.py
${PYSITELIB}/astropy/cosmology/io/__init__.pyc
${PYSITELIB}/astropy/cosmology/io/__init__.pyo
+${PYSITELIB}/astropy/cosmology/io/cosmology.py
+${PYSITELIB}/astropy/cosmology/io/cosmology.pyc
+${PYSITELIB}/astropy/cosmology/io/cosmology.pyo
${PYSITELIB}/astropy/cosmology/io/ecsv.py
${PYSITELIB}/astropy/cosmology/io/ecsv.pyc
${PYSITELIB}/astropy/cosmology/io/ecsv.pyo
+${PYSITELIB}/astropy/cosmology/io/html.py
+${PYSITELIB}/astropy/cosmology/io/html.pyc
+${PYSITELIB}/astropy/cosmology/io/html.pyo
${PYSITELIB}/astropy/cosmology/io/mapping.py
${PYSITELIB}/astropy/cosmology/io/mapping.pyc
${PYSITELIB}/astropy/cosmology/io/mapping.pyo
${PYSITELIB}/astropy/cosmology/io/model.py
${PYSITELIB}/astropy/cosmology/io/model.pyc
${PYSITELIB}/astropy/cosmology/io/model.pyo
+${PYSITELIB}/astropy/cosmology/io/row.py
+${PYSITELIB}/astropy/cosmology/io/row.pyc
+${PYSITELIB}/astropy/cosmology/io/row.pyo
${PYSITELIB}/astropy/cosmology/io/table.py
${PYSITELIB}/astropy/cosmology/io/table.pyc
${PYSITELIB}/astropy/cosmology/io/table.pyo
@@ -516,18 +612,42 @@ ${PYSITELIB}/astropy/cosmology/io/tests/
${PYSITELIB}/astropy/cosmology/io/tests/base.py
${PYSITELIB}/astropy/cosmology/io/tests/base.pyc
${PYSITELIB}/astropy/cosmology/io/tests/base.pyo
+${PYSITELIB}/astropy/cosmology/io/tests/test_.py
+${PYSITELIB}/astropy/cosmology/io/tests/test_.pyc
+${PYSITELIB}/astropy/cosmology/io/tests/test_.pyo
+${PYSITELIB}/astropy/cosmology/io/tests/test_cosmology.py
+${PYSITELIB}/astropy/cosmology/io/tests/test_cosmology.pyc
+${PYSITELIB}/astropy/cosmology/io/tests/test_cosmology.pyo
${PYSITELIB}/astropy/cosmology/io/tests/test_ecsv.py
${PYSITELIB}/astropy/cosmology/io/tests/test_ecsv.pyc
${PYSITELIB}/astropy/cosmology/io/tests/test_ecsv.pyo
+${PYSITELIB}/astropy/cosmology/io/tests/test_html.py
+${PYSITELIB}/astropy/cosmology/io/tests/test_html.pyc
+${PYSITELIB}/astropy/cosmology/io/tests/test_html.pyo
+${PYSITELIB}/astropy/cosmology/io/tests/test_json.py
+${PYSITELIB}/astropy/cosmology/io/tests/test_json.pyc
+${PYSITELIB}/astropy/cosmology/io/tests/test_json.pyo
${PYSITELIB}/astropy/cosmology/io/tests/test_mapping.py
${PYSITELIB}/astropy/cosmology/io/tests/test_mapping.pyc
${PYSITELIB}/astropy/cosmology/io/tests/test_mapping.pyo
${PYSITELIB}/astropy/cosmology/io/tests/test_model.py
${PYSITELIB}/astropy/cosmology/io/tests/test_model.pyc
${PYSITELIB}/astropy/cosmology/io/tests/test_model.pyo
+${PYSITELIB}/astropy/cosmology/io/tests/test_row.py
+${PYSITELIB}/astropy/cosmology/io/tests/test_row.pyc
+${PYSITELIB}/astropy/cosmology/io/tests/test_row.pyo
${PYSITELIB}/astropy/cosmology/io/tests/test_table.py
${PYSITELIB}/astropy/cosmology/io/tests/test_table.pyc
${PYSITELIB}/astropy/cosmology/io/tests/test_table.pyo
+${PYSITELIB}/astropy/cosmology/io/tests/test_yaml.py
+${PYSITELIB}/astropy/cosmology/io/tests/test_yaml.pyc
+${PYSITELIB}/astropy/cosmology/io/tests/test_yaml.pyo
+${PYSITELIB}/astropy/cosmology/io/utils.py
+${PYSITELIB}/astropy/cosmology/io/utils.pyc
+${PYSITELIB}/astropy/cosmology/io/utils.pyo
+${PYSITELIB}/astropy/cosmology/io/yaml.py
+${PYSITELIB}/astropy/cosmology/io/yaml.pyc
+${PYSITELIB}/astropy/cosmology/io/yaml.pyo
${PYSITELIB}/astropy/cosmology/parameter.py
${PYSITELIB}/astropy/cosmology/parameter.pyc
${PYSITELIB}/astropy/cosmology/parameter.pyo
@@ -537,64 +657,27 @@ ${PYSITELIB}/astropy/cosmology/parameter
${PYSITELIB}/astropy/cosmology/realizations.py
${PYSITELIB}/astropy/cosmology/realizations.pyc
${PYSITELIB}/astropy/cosmology/realizations.pyo
-${PYSITELIB}/astropy/cosmology/scalar_inv_efuncs.so
${PYSITELIB}/astropy/cosmology/tests/__init__.py
${PYSITELIB}/astropy/cosmology/tests/__init__.pyc
${PYSITELIB}/astropy/cosmology/tests/__init__.pyo
${PYSITELIB}/astropy/cosmology/tests/conftest.py
${PYSITELIB}/astropy/cosmology/tests/conftest.pyc
${PYSITELIB}/astropy/cosmology/tests/conftest.pyo
-${PYSITELIB}/astropy/cosmology/tests/mypackage/__init__.py
-${PYSITELIB}/astropy/cosmology/tests/mypackage/__init__.pyc
-${PYSITELIB}/astropy/cosmology/tests/mypackage/__init__.pyo
-${PYSITELIB}/astropy/cosmology/tests/mypackage/cosmology.py
-${PYSITELIB}/astropy/cosmology/tests/mypackage/cosmology.pyc
-${PYSITELIB}/astropy/cosmology/tests/mypackage/cosmology.pyo
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/__init__.py
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/__init__.pyc
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/__init__.pyo
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_convert.py
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_convert.pyc
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_convert.pyo
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_io.py
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_io.pyc
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/astropy_io.pyo
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/core.py
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/core.pyc
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/core.pyo
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/__init__.py
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/__init__.pyc
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/__init__.pyo
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/conftest.py
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/conftest.pyc
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/conftest.pyo
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_convert.py
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_convert.pyc
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_convert.pyo
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_io.py
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_io.pyc
-${PYSITELIB}/astropy/cosmology/tests/mypackage/io/tests/test_astropy_io.pyo
+${PYSITELIB}/astropy/cosmology/tests/helper.py
+${PYSITELIB}/astropy/cosmology/tests/helper.pyc
+${PYSITELIB}/astropy/cosmology/tests/helper.pyo
${PYSITELIB}/astropy/cosmology/tests/test_connect.py
${PYSITELIB}/astropy/cosmology/tests/test_connect.pyc
${PYSITELIB}/astropy/cosmology/tests/test_connect.pyo
${PYSITELIB}/astropy/cosmology/tests/test_core.py
${PYSITELIB}/astropy/cosmology/tests/test_core.pyc
${PYSITELIB}/astropy/cosmology/tests/test_core.pyo
-${PYSITELIB}/astropy/cosmology/tests/test_cosmology.py
-${PYSITELIB}/astropy/cosmology/tests/test_cosmology.pyc
-${PYSITELIB}/astropy/cosmology/tests/test_cosmology.pyo
-${PYSITELIB}/astropy/cosmology/tests/test_flrw.py
-${PYSITELIB}/astropy/cosmology/tests/test_flrw.pyc
-${PYSITELIB}/astropy/cosmology/tests/test_flrw.pyo
-${PYSITELIB}/astropy/cosmology/tests/test_funcs.py
-${PYSITELIB}/astropy/cosmology/tests/test_funcs.pyc
-${PYSITELIB}/astropy/cosmology/tests/test_funcs.pyo
${PYSITELIB}/astropy/cosmology/tests/test_parameter.py
${PYSITELIB}/astropy/cosmology/tests/test_parameter.pyc
${PYSITELIB}/astropy/cosmology/tests/test_parameter.pyo
-${PYSITELIB}/astropy/cosmology/tests/test_pickle.py
-${PYSITELIB}/astropy/cosmology/tests/test_pickle.pyc
-${PYSITELIB}/astropy/cosmology/tests/test_pickle.pyo
+${PYSITELIB}/astropy/cosmology/tests/test_parameters.py
+${PYSITELIB}/astropy/cosmology/tests/test_parameters.pyc
+${PYSITELIB}/astropy/cosmology/tests/test_parameters.pyo
${PYSITELIB}/astropy/cosmology/tests/test_realizations.py
${PYSITELIB}/astropy/cosmology/tests/test_realizations.pyc
${PYSITELIB}/astropy/cosmology/tests/test_realizations.pyo
@@ -629,8 +712,13 @@ ${PYSITELIB}/astropy/extern/jquery/__ini
${PYSITELIB}/astropy/extern/jquery/__init__.pyc
${PYSITELIB}/astropy/extern/jquery/__init__.pyo
${PYSITELIB}/astropy/extern/jquery/data/css/jquery.dataTables.css
-${PYSITELIB}/astropy/extern/jquery/data/js/jquery-3.1.1.js
-${PYSITELIB}/astropy/extern/jquery/data/js/jquery-3.1.1.min.js
+${PYSITELIB}/astropy/extern/jquery/data/images/sort_asc.png
+${PYSITELIB}/astropy/extern/jquery/data/images/sort_asc_disabled.png
+${PYSITELIB}/astropy/extern/jquery/data/images/sort_both.png
+${PYSITELIB}/astropy/extern/jquery/data/images/sort_desc.png
+${PYSITELIB}/astropy/extern/jquery/data/images/sort_desc_disabled.png
+${PYSITELIB}/astropy/extern/jquery/data/js/jquery-3.6.0.js
+${PYSITELIB}/astropy/extern/jquery/data/js/jquery-3.6.0.min.js
${PYSITELIB}/astropy/extern/jquery/data/js/jquery.dataTables.js
${PYSITELIB}/astropy/extern/jquery/data/js/jquery.dataTables.min.js
${PYSITELIB}/astropy/extern/ply/__init__.py
@@ -838,6 +926,43 @@ ${PYSITELIB}/astropy/io/ascii/ui.pyo
${PYSITELIB}/astropy/io/fits/__init__.py
${PYSITELIB}/astropy/io/fits/__init__.pyc
${PYSITELIB}/astropy/io/fits/__init__.pyo
+${PYSITELIB}/astropy/io/fits/_tiled_compression/__init__.py
+${PYSITELIB}/astropy/io/fits/_tiled_compression/__init__.pyc
+${PYSITELIB}/astropy/io/fits/_tiled_compression/__init__.pyo
+${PYSITELIB}/astropy/io/fits/_tiled_compression/_compression.so
+${PYSITELIB}/astropy/io/fits/_tiled_compression/codecs.py
+${PYSITELIB}/astropy/io/fits/_tiled_compression/codecs.pyc
+${PYSITELIB}/astropy/io/fits/_tiled_compression/codecs.pyo
+${PYSITELIB}/astropy/io/fits/_tiled_compression/quantization.py
+${PYSITELIB}/astropy/io/fits/_tiled_compression/quantization.pyc
+${PYSITELIB}/astropy/io/fits/_tiled_compression/quantization.pyo
+${PYSITELIB}/astropy/io/fits/_tiled_compression/setup_package.py
+${PYSITELIB}/astropy/io/fits/_tiled_compression/setup_package.pyc
+${PYSITELIB}/astropy/io/fits/_tiled_compression/setup_package.pyo
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/__init__.py
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/__init__.pyc
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/__init__.pyo
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/conftest.py
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/conftest.pyc
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/conftest.pyo
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/data/compressed_with_nan.fits
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/data/m13.fits
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/data/m13_gzip.fits
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/data/m13_hcomp.fits
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/data/m13_plio.fits
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/data/m13_rice.fits
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/test_fitsio.py
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/test_fitsio.pyc
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/test_fitsio.pyo
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/test_tiled_compression.py
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/test_tiled_compression.pyc
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tests/test_tiled_compression.pyo
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tiled_compression.py
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tiled_compression.pyc
+${PYSITELIB}/astropy/io/fits/_tiled_compression/tiled_compression.pyo
+${PYSITELIB}/astropy/io/fits/_tiled_compression/utils.py
+${PYSITELIB}/astropy/io/fits/_tiled_compression/utils.pyc
+${PYSITELIB}/astropy/io/fits/_tiled_compression/utils.pyo
${PYSITELIB}/astropy/io/fits/_utils.so
${PYSITELIB}/astropy/io/fits/card.py
${PYSITELIB}/astropy/io/fits/card.pyc
@@ -845,7 +970,6 @@ ${PYSITELIB}/astropy/io/fits/card.pyo
${PYSITELIB}/astropy/io/fits/column.py
${PYSITELIB}/astropy/io/fits/column.pyc
${PYSITELIB}/astropy/io/fits/column.pyo
-${PYSITELIB}/astropy/io/fits/compression.so
${PYSITELIB}/astropy/io/fits/connect.py
${PYSITELIB}/astropy/io/fits/connect.pyc
${PYSITELIB}/astropy/io/fits/connect.pyo
@@ -909,12 +1033,12 @@ ${PYSITELIB}/astropy/io/fits/scripts/fit
${PYSITELIB}/astropy/io/fits/scripts/fitsinfo.py
${PYSITELIB}/astropy/io/fits/scripts/fitsinfo.pyc
${PYSITELIB}/astropy/io/fits/scripts/fitsinfo.pyo
-${PYSITELIB}/astropy/io/fits/setup_package.py
-${PYSITELIB}/astropy/io/fits/setup_package.pyc
-${PYSITELIB}/astropy/io/fits/setup_package.pyo
${PYSITELIB}/astropy/io/fits/tests/__init__.py
${PYSITELIB}/astropy/io/fits/tests/__init__.pyc
${PYSITELIB}/astropy/io/fits/tests/__init__.pyo
+${PYSITELIB}/astropy/io/fits/tests/conftest.py
+${PYSITELIB}/astropy/io/fits/tests/conftest.pyc
+${PYSITELIB}/astropy/io/fits/tests/conftest.pyo
${PYSITELIB}/astropy/io/fits/tests/data/arange.fits
${PYSITELIB}/astropy/io/fits/tests/data/ascii.fits
${PYSITELIB}/astropy/io/fits/tests/data/ascii_i4-i20.fits
@@ -981,6 +1105,9 @@ ${PYSITELIB}/astropy/io/fits/tests/test_
${PYSITELIB}/astropy/io/fits/tests/test_fitstime.py
${PYSITELIB}/astropy/io/fits/tests/test_fitstime.pyc
${PYSITELIB}/astropy/io/fits/tests/test_fitstime.pyo
+${PYSITELIB}/astropy/io/fits/tests/test_fsspec.py
+${PYSITELIB}/astropy/io/fits/tests/test_fsspec.pyc
+${PYSITELIB}/astropy/io/fits/tests/test_fsspec.pyo
${PYSITELIB}/astropy/io/fits/tests/test_groups.py
${PYSITELIB}/astropy/io/fits/tests/test_groups.pyc
${PYSITELIB}/astropy/io/fits/tests/test_groups.pyo
@@ -1005,6 +1132,9 @@ ${PYSITELIB}/astropy/io/fits/tests/test_
${PYSITELIB}/astropy/io/fits/tests/test_table.py
${PYSITELIB}/astropy/io/fits/tests/test_table.pyc
${PYSITELIB}/astropy/io/fits/tests/test_table.pyo
+${PYSITELIB}/astropy/io/fits/tests/test_tilde_path.py
+${PYSITELIB}/astropy/io/fits/tests/test_tilde_path.pyc
+${PYSITELIB}/astropy/io/fits/tests/test_tilde_path.pyo
${PYSITELIB}/astropy/io/fits/tests/test_uint.py
${PYSITELIB}/astropy/io/fits/tests/test_uint.pyc
${PYSITELIB}/astropy/io/fits/tests/test_uint.pyo
@@ -1053,6 +1183,9 @@ ${PYSITELIB}/astropy/io/misc/asdf/data/s
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/time/timedelta-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/transform/units_mapping-1.0.0.yaml
${PYSITELIB}/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/units/equivalency-1.0.0.yaml
+${PYSITELIB}/astropy/io/misc/asdf/deprecation.py
+${PYSITELIB}/astropy/io/misc/asdf/deprecation.pyc
+${PYSITELIB}/astropy/io/misc/asdf/deprecation.pyo
${PYSITELIB}/astropy/io/misc/asdf/extension.py
${PYSITELIB}/astropy/io/misc/asdf/extension.pyc
${PYSITELIB}/astropy/io/misc/asdf/extension.pyo
@@ -1180,6 +1313,9 @@ ${PYSITELIB}/astropy/io/misc/asdf/tags/t
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/projections.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/projections.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/projections.pyo
+${PYSITELIB}/astropy/io/misc/asdf/tags/transform/spline.py
+${PYSITELIB}/astropy/io/misc/asdf/tags/transform/spline.pyc
+${PYSITELIB}/astropy/io/misc/asdf/tags/transform/spline.pyo
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tabular.py
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tabular.pyc
${PYSITELIB}/astropy/io/misc/asdf/tags/transform/tabular.pyo
@@ -1292,6 +1428,9 @@ ${PYSITELIB}/astropy/io/registry/tests/t
${PYSITELIB}/astropy/io/tests/__init__.py
${PYSITELIB}/astropy/io/tests/__init__.pyc
${PYSITELIB}/astropy/io/tests/__init__.pyo
+${PYSITELIB}/astropy/io/tests/mixin_columns.py
+${PYSITELIB}/astropy/io/tests/mixin_columns.pyc
+${PYSITELIB}/astropy/io/tests/mixin_columns.pyo
${PYSITELIB}/astropy/io/tests/safeio.py
${PYSITELIB}/astropy/io/tests/safeio.pyc
${PYSITELIB}/astropy/io/tests/safeio.pyo
@@ -1405,7 +1544,6 @@ ${PYSITELIB}/astropy/logger.pyo
${PYSITELIB}/astropy/modeling/__init__.py
${PYSITELIB}/astropy/modeling/__init__.pyc
${PYSITELIB}/astropy/modeling/__init__.pyo
-${PYSITELIB}/astropy/modeling/_projections.so
${PYSITELIB}/astropy/modeling/bounding_box.py
${PYSITELIB}/astropy/modeling/bounding_box.pyc
${PYSITELIB}/astropy/modeling/bounding_box.pyo
@@ -1454,9 +1592,6 @@ ${PYSITELIB}/astropy/modeling/rotations.
${PYSITELIB}/astropy/modeling/separable.py
${PYSITELIB}/astropy/modeling/separable.pyc
${PYSITELIB}/astropy/modeling/separable.pyo
-${PYSITELIB}/astropy/modeling/setup_package.py
-${PYSITELIB}/astropy/modeling/setup_package.pyc
-${PYSITELIB}/astropy/modeling/setup_package.pyo
${PYSITELIB}/astropy/modeling/spline.py
${PYSITELIB}/astropy/modeling/spline.pyc
${PYSITELIB}/astropy/modeling/spline.pyo
@@ -1528,6 +1663,9 @@ ${PYSITELIB}/astropy/modeling/tests/test
${PYSITELIB}/astropy/modeling/tests/test_physical_models.py
${PYSITELIB}/astropy/modeling/tests/test_physical_models.pyc
${PYSITELIB}/astropy/modeling/tests/test_physical_models.pyo
+${PYSITELIB}/astropy/modeling/tests/test_pickle.py
+${PYSITELIB}/astropy/modeling/tests/test_pickle.pyc
+${PYSITELIB}/astropy/modeling/tests/test_pickle.pyo
${PYSITELIB}/astropy/modeling/tests/test_polynomial.py
${PYSITELIB}/astropy/modeling/tests/test_polynomial.pyc
${PYSITELIB}/astropy/modeling/tests/test_polynomial.pyo
@@ -1968,21 +2106,17 @@ ${PYSITELIB}/astropy/tests/__init__.pyo
${PYSITELIB}/astropy/tests/command.py
${PYSITELIB}/astropy/tests/command.pyc
${PYSITELIB}/astropy/tests/command.pyo
-${PYSITELIB}/astropy/tests/disable_internet.py
-${PYSITELIB}/astropy/tests/disable_internet.pyc
-${PYSITELIB}/astropy/tests/disable_internet.pyo
+${PYSITELIB}/astropy/tests/figures/__init__.py
+${PYSITELIB}/astropy/tests/figures/__init__.pyc
+${PYSITELIB}/astropy/tests/figures/__init__.pyo
+${PYSITELIB}/astropy/tests/figures/helpers.py
+${PYSITELIB}/astropy/tests/figures/helpers.pyc
+${PYSITELIB}/astropy/tests/figures/helpers.pyo
+${PYSITELIB}/astropy/tests/figures/py39-test-image-mpl334-cov.json
+${PYSITELIB}/astropy/tests/figures/py39-test-image-mpldev-cov.json
${PYSITELIB}/astropy/tests/helper.py
${PYSITELIB}/astropy/tests/helper.pyc
${PYSITELIB}/astropy/tests/helper.pyo
-${PYSITELIB}/astropy/tests/image_tests.py
-${PYSITELIB}/astropy/tests/image_tests.pyc
-${PYSITELIB}/astropy/tests/image_tests.pyo
-${PYSITELIB}/astropy/tests/plugins/__init__.py
-${PYSITELIB}/astropy/tests/plugins/__init__.pyc
-${PYSITELIB}/astropy/tests/plugins/__init__.pyo
-${PYSITELIB}/astropy/tests/plugins/display.py
-${PYSITELIB}/astropy/tests/plugins/display.pyc
-${PYSITELIB}/astropy/tests/plugins/display.pyo
${PYSITELIB}/astropy/tests/runner.py
${PYSITELIB}/astropy/tests/runner.pyc
${PYSITELIB}/astropy/tests/runner.pyo
@@ -2068,6 +2202,12 @@ ${PYSITELIB}/astropy/time/tests/test_upd
${PYSITELIB}/astropy/time/tests/test_ut1.py
${PYSITELIB}/astropy/time/tests/test_ut1.pyc
${PYSITELIB}/astropy/time/tests/test_ut1.pyo
+${PYSITELIB}/astropy/time/time_helper/__init__.py
+${PYSITELIB}/astropy/time/time_helper/__init__.pyc
+${PYSITELIB}/astropy/time/time_helper/__init__.pyo
+${PYSITELIB}/astropy/time/time_helper/function_helpers.py
+${PYSITELIB}/astropy/time/time_helper/function_helpers.pyc
+${PYSITELIB}/astropy/time/time_helper/function_helpers.pyo
${PYSITELIB}/astropy/time/utils.py
${PYSITELIB}/astropy/time/utils.pyc
${PYSITELIB}/astropy/time/utils.pyo
@@ -2181,6 +2321,33 @@ ${PYSITELIB}/astropy/timeseries/periodog
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/utils.py
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/utils.pyc
${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/utils.pyo
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/__init__.py
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/__init__.pyc
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/__init__.pyo
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/core.py
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/core.pyc
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/core.pyo
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/__init__.py
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/__init__.pyc
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/__init__.pyo
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/main.py
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/main.pyc
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/main.pyo
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/mbfast_impl.py
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/mbfast_impl.pyc
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/mbfast_impl.pyo
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/mbflex_impl.py
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/mbflex_impl.pyc
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/mbflex_impl.pyo
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/mle.py
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/mle.pyc
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/implementations/mle.pyo
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/tests/__init__.py
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/tests/__init__.pyc
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/tests/__init__.pyo
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/tests/test_lombscargle_multiband.py
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/tests/test_lombscargle_multiband.pyc
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle_multiband/tests/test_lombscargle_multiband.pyo
${PYSITELIB}/astropy/timeseries/sampled.py
${PYSITELIB}/astropy/timeseries/sampled.pyc
${PYSITELIB}/astropy/timeseries/sampled.pyo
@@ -2213,15 +2380,15 @@ ${PYSITELIB}/astropy/uncertainty/distrib
${PYSITELIB}/astropy/uncertainty/tests/__init__.py
${PYSITELIB}/astropy/uncertainty/tests/__init__.pyc
${PYSITELIB}/astropy/uncertainty/tests/__init__.pyo
+${PYSITELIB}/astropy/uncertainty/tests/test_containers.py
+${PYSITELIB}/astropy/uncertainty/tests/test_containers.pyc
+${PYSITELIB}/astropy/uncertainty/tests/test_containers.pyo
${PYSITELIB}/astropy/uncertainty/tests/test_distribution.py
${PYSITELIB}/astropy/uncertainty/tests/test_distribution.pyc
${PYSITELIB}/astropy/uncertainty/tests/test_distribution.pyo
${PYSITELIB}/astropy/units/__init__.py
${PYSITELIB}/astropy/units/__init__.pyc
${PYSITELIB}/astropy/units/__init__.pyo
-${PYSITELIB}/astropy/units/_typing.py
-${PYSITELIB}/astropy/units/_typing.pyc
-${PYSITELIB}/astropy/units/_typing.pyo
${PYSITELIB}/astropy/units/astrophys.py
${PYSITELIB}/astropy/units/astrophys.pyc
${PYSITELIB}/astropy/units/astrophys.pyo
@@ -2390,6 +2557,9 @@ ${PYSITELIB}/astropy/units/tests/test_qu
${PYSITELIB}/astropy/units/tests/test_quantity_helpers.py
${PYSITELIB}/astropy/units/tests/test_quantity_helpers.pyc
${PYSITELIB}/astropy/units/tests/test_quantity_helpers.pyo
+${PYSITELIB}/astropy/units/tests/test_quantity_info.py
+${PYSITELIB}/astropy/units/tests/test_quantity_info.pyc
+${PYSITELIB}/astropy/units/tests/test_quantity_info.pyo
${PYSITELIB}/astropy/units/tests/test_quantity_non_ufuncs.py
${PYSITELIB}/astropy/units/tests/test_quantity_non_ufuncs.pyc
${PYSITELIB}/astropy/units/tests/test_quantity_non_ufuncs.pyo
@@ -2461,9 +2631,10 @@ ${PYSITELIB}/astropy/utils/iers/__init__
${PYSITELIB}/astropy/utils/iers/__init__.pyc
${PYSITELIB}/astropy/utils/iers/__init__.pyo
${PYSITELIB}/astropy/utils/iers/data/Leap_Second.dat
+${PYSITELIB}/astropy/utils/iers/data/ReadMe.eopc04
${PYSITELIB}/astropy/utils/iers/data/ReadMe.eopc04_IAU2000
${PYSITELIB}/astropy/utils/iers/data/ReadMe.finals2000A
-${PYSITELIB}/astropy/utils/iers/data/eopc04_IAU2000.62-now
+${PYSITELIB}/astropy/utils/iers/data/eopc04.1962-now
${PYSITELIB}/astropy/utils/iers/data/update_builtin_iers.sh
${PYSITELIB}/astropy/utils/iers/iers.py
${PYSITELIB}/astropy/utils/iers/iers.pyc
@@ -2474,6 +2645,7 @@ ${PYSITELIB}/astropy/utils/iers/tests/__
${PYSITELIB}/astropy/utils/iers/tests/data/finals2000A-2016-02-30-test
${PYSITELIB}/astropy/utils/iers/tests/data/finals2000A-2016-04-30-test
${PYSITELIB}/astropy/utils/iers/tests/data/iers_a_excerpt
+${PYSITELIB}/astropy/utils/iers/tests/data/iers_b_old_style_excerpt
${PYSITELIB}/astropy/utils/iers/tests/data/leap-seconds.list
${PYSITELIB}/astropy/utils/iers/tests/test_iers.py
${PYSITELIB}/astropy/utils/iers/tests/test_iers.pyc
@@ -2717,6 +2889,9 @@ ${PYSITELIB}/astropy/visualization/wcsax
${PYSITELIB}/astropy/visualization/wcsaxes/grid_paths.py
${PYSITELIB}/astropy/visualization/wcsaxes/grid_paths.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/grid_paths.pyo
+${PYSITELIB}/astropy/visualization/wcsaxes/helpers.py
+${PYSITELIB}/astropy/visualization/wcsaxes/helpers.pyc
+${PYSITELIB}/astropy/visualization/wcsaxes/helpers.pyo
${PYSITELIB}/astropy/visualization/wcsaxes/patches.py
${PYSITELIB}/astropy/visualization/wcsaxes/patches.pyc
${PYSITELIB}/astropy/visualization/wcsaxes/patches.pyo
@@ -2798,6 +2973,8 @@ ${PYSITELIB}/astropy/wcs/include/astropy
${PYSITELIB}/astropy/wcs/include/astropy_wcs/util.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcsconfig.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcslib_auxprm_wrap.h
+${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcslib_celprm_wrap.h
+${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcslib_prjprm_wrap.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcslib_tabprm_wrap.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcslib_units_wrap.h
${PYSITELIB}/astropy/wcs/include/astropy_wcs/wcslib_wrap.h
@@ -2895,9 +3072,15 @@ ${PYSITELIB}/astropy/wcs/tests/helper.py
${PYSITELIB}/astropy/wcs/tests/test_auxprm.py
${PYSITELIB}/astropy/wcs/tests/test_auxprm.pyc
${PYSITELIB}/astropy/wcs/tests/test_auxprm.pyo
+${PYSITELIB}/astropy/wcs/tests/test_celprm.py
+${PYSITELIB}/astropy/wcs/tests/test_celprm.pyc
+${PYSITELIB}/astropy/wcs/tests/test_celprm.pyo
${PYSITELIB}/astropy/wcs/tests/test_pickle.py
${PYSITELIB}/astropy/wcs/tests/test_pickle.pyc
${PYSITELIB}/astropy/wcs/tests/test_pickle.pyo
+${PYSITELIB}/astropy/wcs/tests/test_prjprm.py
+${PYSITELIB}/astropy/wcs/tests/test_prjprm.pyc
+${PYSITELIB}/astropy/wcs/tests/test_prjprm.pyo
${PYSITELIB}/astropy/wcs/tests/test_profiling.py
${PYSITELIB}/astropy/wcs/tests/test_profiling.pyc
${PYSITELIB}/astropy/wcs/tests/test_profiling.pyo
@@ -2950,6 +3133,7 @@ ${PYSITELIB}/astropy/wcs/wcsapi/sliced_l
${PYSITELIB}/astropy/wcs/wcsapi/tests/__init__.py
${PYSITELIB}/astropy/wcs/wcsapi/tests/__init__.pyc
${PYSITELIB}/astropy/wcs/wcsapi/tests/__init__.pyo
+${PYSITELIB}/astropy/wcs/wcsapi/tests/data/example_4d_tab.fits
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_fitswcs.py
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_fitswcs.pyc
${PYSITELIB}/astropy/wcs/wcsapi/tests/test_fitswcs.pyo
Index: pkgsrc/math/py-astropy/distinfo
diff -u pkgsrc/math/py-astropy/distinfo:1.4 pkgsrc/math/py-astropy/distinfo:1.5
--- pkgsrc/math/py-astropy/distinfo:1.4 Tue Aug 30 15:54:37 2022
+++ pkgsrc/math/py-astropy/distinfo Thu Aug 31 14:01:37 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2022/08/30 15:54:37 thor Exp $
+$NetBSD: distinfo,v 1.5 2023/08/31 14:01:37 adam Exp $
-BLAKE2s (astropy-5.0.4.tar.gz) = 1e3123e87849ae25f3f778ae0cb8d36a336e49b1c0ebb7c180282a838f9cf647
-SHA512 (astropy-5.0.4.tar.gz) = 9076b364d7da2ba9a6a43946be5050261eabc46ef755c65bf7733927d26dd0fa23e0f95ef9a6992f4871319fef040972c4449de9bfa24421cc3711716dfb136c
-Size (astropy-5.0.4.tar.gz) = 7851964 bytes
+BLAKE2s (astropy-5.3.2.tar.gz) = 70e41838c55d60971d4f80ff1943de81a3263e90f97a455d47a884e500485c40
+SHA512 (astropy-5.3.2.tar.gz) = 252df2b86984e904960292e11fd7d7357f1a8d10dec0010c3dee6ee9a5a67b8d894bfe062de5aade1821db828c3bed766c0f30e3bcad4ffd004fc654bd84c493
+Size (astropy-5.3.2.tar.gz) = 7803668 bytes
Home |
Main Index |
Thread Index |
Old Index