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:           Fri Jun 13 07:06:41 UTC 2025

Modified Files:
        pkgsrc/math/py-astropy: Makefile PLIST distinfo

Log Message:
py-astropy: updated to 7.1.0

Version 7.1.0 (2025-05-20)

New Features

astropy.coordinates
^^^^^^^^^^^^^^^^^^^

- ``search_around_sky`` and ``search_around_3D`` now accept separations/distlimits
  broadcastable to the same shape as ``coords1``.

astropy.io.ascii
^^^^^^^^^^^^^^^^

- Add functionality to read and write to a Table from the TDAT format as part of
  the Unified File Read/Write Interface.

- ``io.ascii`` now supports on-the-fly decompression of LZW-compressed files
  (typically ".Z" extension) via the optional package uncompresspy.

astropy.io.fits
^^^^^^^^^^^^^^^

- Astropy can now not only read but also write headers that have ``HIERARCH``
  keys with long values, by allowing the use of ``CONTINUE`` cards for those
  (as was already the case for regular FITS keys).

- Add ``strip_spaces`` option to ``Table.read`` to strip trailing whitespaces in
  string columns.  This will be activated by default in the next major release.

- ``io.fits`` now supports on-the-fly decompression of LZW-compressed files
  (typically ".Z" extension) via the optional package uncompresspy.

- ``io.fits`` now supports on-the-fly decompression of LZMA-compressed files
  (typically ".xz" extension) if the lzma module is provided by the Python
  installation.

astropy.io.misc
^^^^^^^^^^^^^^^

- Add a fast ``Table`` CSV reader that uses the PyArrow ``read_csv()`` function. This can
  be significantly faster and more memory-efficient than the ``astropy.io.ascii`` fast
  reader. This new reader can be used with ``Table.read()`` by setting
  ``format="pyarrow.csv"``.

astropy.io.votable
^^^^^^^^^^^^^^^^^^

- New module ``astropy.io.votable.dataorigin`` to extract Data Origin information from INFO in VOTable.

- ``CooSys`` VOTable elements now have a method ``to_astropy_frame`` that returns the
  corresponding astropy built-in frame, when possible.

astropy.modeling
^^^^^^^^^^^^^^^^

- Added a ``fit_info=`` keyword argument to ``parallel_fit_dask`` to allow users to preserve fit information from each individual fit.

astropy.nddata
^^^^^^^^^^^^^^

- Adds a utility class, ``astropy.nddata.Covariance``, used to construct, access,
  and store covariance matrices.  The class depends on use of the ``scipy.sparse``
  module.

- Add the ``limit_rounding_method`` parameter to `~astropy.nddata.Cutout2D`,
  `~astropy.nddata.overlap_slices`, `~astropy.nddata.extract_array`, and
  `~astropy.nddata.add_array` to allow users to specify the rounding method
  used when calculating the pixel limits of the cutout. The default method
  is to use `~numpy.ceil`.

astropy.table
^^^^^^^^^^^^^

- Document that ``Table.group_by``'s underlying sorting algorithm is guaranteed
  to be stable. This reflects behavior that was already present but undocumented,
  at least since astropy 6.0 .

astropy.timeseries
^^^^^^^^^^^^^^^^^^

- Downsampling now works correctly also on ``MaskedColumn`` and
  ``MaskedQuantity`` with possibly masked elements.  Furthermore, the type of
  (Masked) column will now be properly preserved in downsampling.

astropy.units
^^^^^^^^^^^^^

- Units with the "micro" prefix can now be imported using ``"μ"`` in the name.
  For example, the microgram can now be imported with
  ``from astropy.units import μg``.

- It is now possible to import angström, litre and ohm from ``astropy.units``
  using the ``Å``, ``ℓ`` and ``Ω`` symbols.

- Unit conversions between kelvins and degrees Rankine no longer require the
  ``temperature`` equivalency.

astropy.utils
^^^^^^^^^^^^^

- Make commonly used Masked subclasses importable for ASDF support.

  Registered types associated with ASDF converters must be importable by
  their fully qualified name. Masked classes are dynamically created and have
  apparent names like ``astropy.utils.masked.core.MaskedQuantity`` although
  they aren't actually attributes of this module. Customize module attribute
  lookup so that certain commonly used Masked classes are importable.

  See:

  - https://asdf.readthedocs.io/en/latest/asdf/extending/converters.html#entry-point-performance-considerations
  - https://github.com/astropy/asdf-astropy/pull/253

- ``astropy.utils.data.download_file`` can now recover from a ``TimeoutError``
  when given a list of alternative source URLs. Previously, only ``URLError``
  exceptions were recoverable. An exception is still being raised after trying all
  URLs provided if none of them could be reached.

- ``utils.data`` now supports on-the-fly decompression of LZW-compressed files
  (typically ".Z" extension) via the optional package uncompresspy.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/math/py-astropy/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/math/py-astropy/PLIST
cvs rdiff -u -r1.14 -r1.15 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.23 pkgsrc/math/py-astropy/Makefile:1.24
--- pkgsrc/math/py-astropy/Makefile:1.23        Wed May 14 14:40:55 2025
+++ pkgsrc/math/py-astropy/Makefile     Fri Jun 13 07:06:41 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2025/05/14 14:40:55 adam Exp $
+# $NetBSD: Makefile,v 1.24 2025/06/13 07:06:41 adam Exp $
 
-DISTNAME=      astropy-7.0.2
+DISTNAME=      astropy-7.1.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=a/astropy/}
@@ -10,22 +10,23 @@ HOMEPAGE=   https://www.astropy.org/
 COMMENT=       Python module for astronomical calculations and data analysis
 LICENSE=       modified-bsd
 
-TOOL_DEPENDS+= ${PYPKGPREFIX}-extension-helpers-[0-9]*:../../devel/py-extension-helpers
+TOOL_DEPENDS+= ${PYPKGPREFIX}-cython>=3.0.0:../../devel/py-cython
+TOOL_DEPENDS+= ${PYPKGPREFIX}-extension-helpers>=1:../../devel/py-extension-helpers
 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
-TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=8.0.0:../../devel/py-setuptools_scm
 DEPENDS+=      ${PYPKGPREFIX}-astropy-iers-data>=0.2024.8.27.10.28.29:../../math/py-astropy-iers-data
 DEPENDS+=      ${PYPKGPREFIX}-pyerfa>=2.0.0.1:../../math/py-pyerfa
-DEPENDS+=      ${PYPKGPREFIX}-packaging>=19.0:../../devel/py-packaging
-DEPENDS+=      ${PYPKGPREFIX}-yaml>=3.13:../../textproc/py-yaml
+DEPENDS+=      ${PYPKGPREFIX}-packaging>=22.0:../../devel/py-packaging
+DEPENDS+=      ${PYPKGPREFIX}-yaml>=6.0.0:../../textproc/py-yaml
 # recommended
-DEPENDS+=      ${PYPKGPREFIX}-matplotlib>=3.5.3:../../graphics/py-matplotlib
-DEPENDS+=      ${PYPKGPREFIX}-scipy>=1.8:../../math/py-scipy
+DEPENDS+=      ${PYPKGPREFIX}-matplotlib>=3.6.0:../../graphics/py-matplotlib
+DEPENDS+=      ${PYPKGPREFIX}-scipy>=1.9.2:../../math/py-scipy
 
 USE_LANGUAGES= c c++
 
 PYTHON_SELF_CONFLICT=  yes
 
-PYTHON_VERSIONS_INCOMPATIBLE=  39
+PYTHON_VERSIONS_INCOMPATIBLE=  39 310
 
 .include "../../lang/python/wheel.mk"
 .include "../../math/py-numpy/buildlink3.mk"

Index: pkgsrc/math/py-astropy/PLIST
diff -u pkgsrc/math/py-astropy/PLIST:1.9 pkgsrc/math/py-astropy/PLIST:1.10
--- pkgsrc/math/py-astropy/PLIST:1.9    Tue Apr 15 16:31:37 2025
+++ pkgsrc/math/py-astropy/PLIST        Fri Jun 13 07:06:41 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2025/04/15 16:31:37 adam Exp $
+@comment $NetBSD: PLIST,v 1.10 2025/06/13 07:06:41 adam Exp $
 bin/fits2bitmap
 bin/fitscheck
 bin/fitsdiff
@@ -6,6 +6,7 @@ bin/fitsheader
 bin/fitsinfo
 bin/samp_hub
 bin/showtable
+bin/showtable-astropy
 bin/volint
 bin/wcslint
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
@@ -153,9 +154,6 @@ ${PYSITELIB}/astropy/convolution/tests/t
 ${PYSITELIB}/astropy/convolution/tests/test_convolve_nddata.py
 ${PYSITELIB}/astropy/convolution/tests/test_convolve_nddata.pyc
 ${PYSITELIB}/astropy/convolution/tests/test_convolve_nddata.pyo
-${PYSITELIB}/astropy/convolution/tests/test_convolve_speeds.py
-${PYSITELIB}/astropy/convolution/tests/test_convolve_speeds.pyc
-${PYSITELIB}/astropy/convolution/tests/test_convolve_speeds.pyo
 ${PYSITELIB}/astropy/convolution/tests/test_discretize.py
 ${PYSITELIB}/astropy/convolution/tests/test_discretize.pyc
 ${PYSITELIB}/astropy/convolution/tests/test_discretize.pyo
@@ -554,86 +552,259 @@ ${PYSITELIB}/astropy/coordinates/transfo
 ${PYSITELIB}/astropy/cosmology/__init__.py
 ${PYSITELIB}/astropy/cosmology/__init__.pyc
 ${PYSITELIB}/astropy/cosmology/__init__.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/latex.py
-${PYSITELIB}/astropy/cosmology/_io/latex.pyc
-${PYSITELIB}/astropy/cosmology/_io/latex.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
-${PYSITELIB}/astropy/cosmology/_io/tests/__init__.py
-${PYSITELIB}/astropy/cosmology/_io/tests/__init__.pyc
-${PYSITELIB}/astropy/cosmology/_io/tests/__init__.pyo
-${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_latex.py
-${PYSITELIB}/astropy/cosmology/_io/tests/test_latex.pyc
-${PYSITELIB}/astropy/cosmology/_io/tests/test_latex.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/_signature_deprecations.c
-${PYSITELIB}/astropy/cosmology/_signature_deprecations.so
-${PYSITELIB}/astropy/cosmology/_typing.py
-${PYSITELIB}/astropy/cosmology/_typing.pyc
-${PYSITELIB}/astropy/cosmology/_typing.pyo
-${PYSITELIB}/astropy/cosmology/_utils.py
-${PYSITELIB}/astropy/cosmology/_utils.pyc
-${PYSITELIB}/astropy/cosmology/_utils.pyo
+${PYSITELIB}/astropy/cosmology/_src/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/core.py
+${PYSITELIB}/astropy/cosmology/_src/core.pyc
+${PYSITELIB}/astropy/cosmology/_src/core.pyo
+${PYSITELIB}/astropy/cosmology/_src/default.py
+${PYSITELIB}/astropy/cosmology/_src/default.pyc
+${PYSITELIB}/astropy/cosmology/_src/default.pyo
+${PYSITELIB}/astropy/cosmology/_src/flrw/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/flrw/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/flrw/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/flrw/base.py
+${PYSITELIB}/astropy/cosmology/_src/flrw/base.pyc
+${PYSITELIB}/astropy/cosmology/_src/flrw/base.pyo
+${PYSITELIB}/astropy/cosmology/_src/flrw/lambdacdm.py
+${PYSITELIB}/astropy/cosmology/_src/flrw/lambdacdm.pyc
+${PYSITELIB}/astropy/cosmology/_src/flrw/lambdacdm.pyo
+${PYSITELIB}/astropy/cosmology/_src/flrw/scalar_inv_efuncs.pyx
+${PYSITELIB}/astropy/cosmology/_src/flrw/scalar_inv_efuncs.so
+${PYSITELIB}/astropy/cosmology/_src/flrw/w0cdm.py
+${PYSITELIB}/astropy/cosmology/_src/flrw/w0cdm.pyc
+${PYSITELIB}/astropy/cosmology/_src/flrw/w0cdm.pyo
+${PYSITELIB}/astropy/cosmology/_src/flrw/w0wacdm.py
+${PYSITELIB}/astropy/cosmology/_src/flrw/w0wacdm.pyc
+${PYSITELIB}/astropy/cosmology/_src/flrw/w0wacdm.pyo
+${PYSITELIB}/astropy/cosmology/_src/flrw/w0wzcdm.py
+${PYSITELIB}/astropy/cosmology/_src/flrw/w0wzcdm.pyc
+${PYSITELIB}/astropy/cosmology/_src/flrw/w0wzcdm.pyo
+${PYSITELIB}/astropy/cosmology/_src/flrw/wpwazpcdm.py
+${PYSITELIB}/astropy/cosmology/_src/flrw/wpwazpcdm.pyc
+${PYSITELIB}/astropy/cosmology/_src/flrw/wpwazpcdm.pyo
+${PYSITELIB}/astropy/cosmology/_src/funcs/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/funcs/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/funcs/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/funcs/comparison.py
+${PYSITELIB}/astropy/cosmology/_src/funcs/comparison.pyc
+${PYSITELIB}/astropy/cosmology/_src/funcs/comparison.pyo
+${PYSITELIB}/astropy/cosmology/_src/funcs/optimize.py
+${PYSITELIB}/astropy/cosmology/_src/funcs/optimize.pyc
+${PYSITELIB}/astropy/cosmology/_src/funcs/optimize.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/io/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/cosmology.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/cosmology.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/cosmology.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/ecsv.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/ecsv.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/ecsv.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/html.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/html.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/html.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/latex.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/latex.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/latex.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/mapping.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/mapping.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/mapping.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/model.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/model.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/model.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/row.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/row.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/row.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/table.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/table.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/table.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/utils.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/utils.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/utils.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/yaml.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/yaml.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/yaml.pyo
+${PYSITELIB}/astropy/cosmology/_src/io/connect.py
+${PYSITELIB}/astropy/cosmology/_src/io/connect.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/connect.pyo
+${PYSITELIB}/astropy/cosmology/_src/parameter/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/parameter/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/parameter/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/parameter/converter.py
+${PYSITELIB}/astropy/cosmology/_src/parameter/converter.pyc
+${PYSITELIB}/astropy/cosmology/_src/parameter/converter.pyo
+${PYSITELIB}/astropy/cosmology/_src/parameter/core.py
+${PYSITELIB}/astropy/cosmology/_src/parameter/core.pyc
+${PYSITELIB}/astropy/cosmology/_src/parameter/core.pyo
+${PYSITELIB}/astropy/cosmology/_src/parameter/dataclass_utils.py
+${PYSITELIB}/astropy/cosmology/_src/parameter/dataclass_utils.pyc
+${PYSITELIB}/astropy/cosmology/_src/parameter/dataclass_utils.pyo
+${PYSITELIB}/astropy/cosmology/_src/parameter/descriptors.py
+${PYSITELIB}/astropy/cosmology/_src/parameter/descriptors.pyc
+${PYSITELIB}/astropy/cosmology/_src/parameter/descriptors.pyo
+${PYSITELIB}/astropy/cosmology/_src/setup_package.py
+${PYSITELIB}/astropy/cosmology/_src/setup_package.pyc
+${PYSITELIB}/astropy/cosmology/_src/setup_package.pyo
+${PYSITELIB}/astropy/cosmology/_src/signature_deprecations.c
+${PYSITELIB}/astropy/cosmology/_src/signature_deprecations.so
+${PYSITELIB}/astropy/cosmology/_src/tests/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/tests/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/conftest.py
+${PYSITELIB}/astropy/cosmology/_src/tests/conftest.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/conftest.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/conftest.py
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/conftest.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/conftest.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/data/cosmo_closed.ecsv
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/data/cosmo_flat.ecsv
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/data/cosmo_open.ecsv
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_base.py
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_base.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_base.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_flrw.py
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_flrw.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_flrw.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_lambdacdm.py
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_lambdacdm.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_lambdacdm.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_parameters.py
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_parameters.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_parameters.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w.py
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w0cdm.py
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w0cdm.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w0cdm.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w0wacdm.py
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w0wacdm.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w0wacdm.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w0wzcdm.py
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w0wzcdm.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_w0wzcdm.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_wpwazpcdm.py
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_wpwazpcdm.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/flrw/test_wpwazpcdm.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/funcs/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/tests/funcs/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/funcs/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/funcs/test_comparison.py
+${PYSITELIB}/astropy/cosmology/_src/tests/funcs/test_comparison.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/funcs/test_comparison.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/funcs/test_funcs.py
+${PYSITELIB}/astropy/cosmology/_src/tests/funcs/test_funcs.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/funcs/test_funcs.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/helper.py
+${PYSITELIB}/astropy/cosmology/_src/tests/helper.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/helper.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/base.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/base.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/base.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_connect.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_connect.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_connect.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_cosmology.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_cosmology.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_cosmology.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_ecsv.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_ecsv.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_ecsv.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_html.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_html.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_html.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_json.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_json.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_json.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_latex.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_latex.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_latex.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_mapping.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_mapping.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_mapping.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_model.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_model.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_model.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_row.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_row.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_row.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_table.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_table.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_table.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_yaml.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_yaml.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_yaml.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/conftest.py
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/conftest.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/conftest.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/test_descriptors.py
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/test_descriptors.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/test_descriptors.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/test_parameter.py
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/test_parameter.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/parameter/test_parameter.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/test_core.py
+${PYSITELIB}/astropy/cosmology/_src/tests/test_core.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/test_core.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/test_deprecated_modules.py
+${PYSITELIB}/astropy/cosmology/_src/tests/test_deprecated_modules.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/test_deprecated_modules.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/test_parameters.py
+${PYSITELIB}/astropy/cosmology/_src/tests/test_parameters.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/test_parameters.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/test_realizations.py
+${PYSITELIB}/astropy/cosmology/_src/tests/test_realizations.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/test_realizations.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/test_units.py
+${PYSITELIB}/astropy/cosmology/_src/tests/test_units.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/test_units.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/test_utils.py
+${PYSITELIB}/astropy/cosmology/_src/tests/test_utils.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/test_utils.pyo
+${PYSITELIB}/astropy/cosmology/_src/traits/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/traits/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/traits/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/traits/baryons.py
+${PYSITELIB}/astropy/cosmology/_src/traits/baryons.pyc
+${PYSITELIB}/astropy/cosmology/_src/traits/baryons.pyo
+${PYSITELIB}/astropy/cosmology/_src/traits/rhocrit.py
+${PYSITELIB}/astropy/cosmology/_src/traits/rhocrit.pyc
+${PYSITELIB}/astropy/cosmology/_src/traits/rhocrit.pyo
+${PYSITELIB}/astropy/cosmology/_src/traits/scale_factor.py
+${PYSITELIB}/astropy/cosmology/_src/traits/scale_factor.pyc
+${PYSITELIB}/astropy/cosmology/_src/traits/scale_factor.pyo
+${PYSITELIB}/astropy/cosmology/_src/traits/tcmb.py
+${PYSITELIB}/astropy/cosmology/_src/traits/tcmb.pyc
+${PYSITELIB}/astropy/cosmology/_src/traits/tcmb.pyo
+${PYSITELIB}/astropy/cosmology/_src/typing.py
+${PYSITELIB}/astropy/cosmology/_src/typing.pyc
+${PYSITELIB}/astropy/cosmology/_src/typing.pyo
+${PYSITELIB}/astropy/cosmology/_src/units.py
+${PYSITELIB}/astropy/cosmology/_src/units.pyc
+${PYSITELIB}/astropy/cosmology/_src/units.pyo
+${PYSITELIB}/astropy/cosmology/_src/units_equivalencies.py
+${PYSITELIB}/astropy/cosmology/_src/units_equivalencies.pyc
+${PYSITELIB}/astropy/cosmology/_src/units_equivalencies.pyo
+${PYSITELIB}/astropy/cosmology/_src/utils.py
+${PYSITELIB}/astropy/cosmology/_src/utils.pyc
+${PYSITELIB}/astropy/cosmology/_src/utils.pyo
 ${PYSITELIB}/astropy/cosmology/connect.py
 ${PYSITELIB}/astropy/cosmology/connect.pyc
 ${PYSITELIB}/astropy/cosmology/connect.pyo
@@ -648,143 +819,27 @@ ${PYSITELIB}/astropy/cosmology/data/WMAP
 ${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.pyx
-${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_flrw.py
-${PYSITELIB}/astropy/cosmology/flrw/tests/test_flrw.pyc
-${PYSITELIB}/astropy/cosmology/flrw/tests/test_flrw.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_parameters.py
-${PYSITELIB}/astropy/cosmology/flrw/tests/test_parameters.pyc
-${PYSITELIB}/astropy/cosmology/flrw/tests/test_parameters.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/parameter/__init__.py
-${PYSITELIB}/astropy/cosmology/parameter/__init__.pyc
-${PYSITELIB}/astropy/cosmology/parameter/__init__.pyo
-${PYSITELIB}/astropy/cosmology/parameter/_converter.py
-${PYSITELIB}/astropy/cosmology/parameter/_converter.pyc
-${PYSITELIB}/astropy/cosmology/parameter/_converter.pyo
-${PYSITELIB}/astropy/cosmology/parameter/_core.py
-${PYSITELIB}/astropy/cosmology/parameter/_core.pyc
-${PYSITELIB}/astropy/cosmology/parameter/_core.pyo
-${PYSITELIB}/astropy/cosmology/parameter/_descriptors.py
-${PYSITELIB}/astropy/cosmology/parameter/_descriptors.pyc
-${PYSITELIB}/astropy/cosmology/parameter/_descriptors.pyo
-${PYSITELIB}/astropy/cosmology/parameter/tests/__init__.py
-${PYSITELIB}/astropy/cosmology/parameter/tests/__init__.pyc
-${PYSITELIB}/astropy/cosmology/parameter/tests/__init__.pyo
-${PYSITELIB}/astropy/cosmology/parameter/tests/conftest.py
-${PYSITELIB}/astropy/cosmology/parameter/tests/conftest.pyc
-${PYSITELIB}/astropy/cosmology/parameter/tests/conftest.pyo
-${PYSITELIB}/astropy/cosmology/parameter/tests/test_descriptors.py
-${PYSITELIB}/astropy/cosmology/parameter/tests/test_descriptors.pyc
-${PYSITELIB}/astropy/cosmology/parameter/tests/test_descriptors.pyo
-${PYSITELIB}/astropy/cosmology/parameter/tests/test_parameter.py
-${PYSITELIB}/astropy/cosmology/parameter/tests/test_parameter.pyc
-${PYSITELIB}/astropy/cosmology/parameter/tests/test_parameter.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/io.py
+${PYSITELIB}/astropy/cosmology/io.pyc
+${PYSITELIB}/astropy/cosmology/io.pyo
+${PYSITELIB}/astropy/cosmology/parameter.py
+${PYSITELIB}/astropy/cosmology/parameter.pyc
+${PYSITELIB}/astropy/cosmology/parameter.pyo
 ${PYSITELIB}/astropy/cosmology/parameters.py
 ${PYSITELIB}/astropy/cosmology/parameters.pyc
 ${PYSITELIB}/astropy/cosmology/parameters.pyo
 ${PYSITELIB}/astropy/cosmology/realizations.py
 ${PYSITELIB}/astropy/cosmology/realizations.pyc
 ${PYSITELIB}/astropy/cosmology/realizations.pyo
-${PYSITELIB}/astropy/cosmology/setup_package.py
-${PYSITELIB}/astropy/cosmology/setup_package.pyc
-${PYSITELIB}/astropy/cosmology/setup_package.pyo
-${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/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_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
-${PYSITELIB}/astropy/cosmology/tests/test_units.py
-${PYSITELIB}/astropy/cosmology/tests/test_units.pyc
-${PYSITELIB}/astropy/cosmology/tests/test_units.pyo
-${PYSITELIB}/astropy/cosmology/tests/test_utils.py
-${PYSITELIB}/astropy/cosmology/tests/test_utils.pyc
-${PYSITELIB}/astropy/cosmology/tests/test_utils.pyo
+${PYSITELIB}/astropy/cosmology/traits.py
+${PYSITELIB}/astropy/cosmology/traits.pyc
+${PYSITELIB}/astropy/cosmology/traits.pyo
 ${PYSITELIB}/astropy/cosmology/units.py
 ${PYSITELIB}/astropy/cosmology/units.pyc
 ${PYSITELIB}/astropy/cosmology/units.pyo
@@ -804,20 +859,6 @@ ${PYSITELIB}/astropy/extern/configobj/co
 ${PYSITELIB}/astropy/extern/configobj/validate.py
 ${PYSITELIB}/astropy/extern/configobj/validate.pyc
 ${PYSITELIB}/astropy/extern/configobj/validate.pyo
-${PYSITELIB}/astropy/extern/jquery/__init__.py
-${PYSITELIB}/astropy/extern/jquery/__init__.pyc
-${PYSITELIB}/astropy/extern/jquery/__init__.pyo
-${PYSITELIB}/astropy/extern/jquery/data/css/datatables.css
-${PYSITELIB}/astropy/extern/jquery/data/css/datatables.min.css
-${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/datatables.js
-${PYSITELIB}/astropy/extern/jquery/data/js/datatables.min.js
-${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/ply/__init__.py
 ${PYSITELIB}/astropy/extern/ply/__init__.pyc
 ${PYSITELIB}/astropy/extern/ply/__init__.pyo
@@ -900,6 +941,9 @@ ${PYSITELIB}/astropy/io/ascii/sextractor
 ${PYSITELIB}/astropy/io/ascii/sextractor.pyo
 ${PYSITELIB}/astropy/io/ascii/src/tokenizer.c
 ${PYSITELIB}/astropy/io/ascii/src/tokenizer.h
+${PYSITELIB}/astropy/io/ascii/tdat.py
+${PYSITELIB}/astropy/io/ascii/tdat.pyc
+${PYSITELIB}/astropy/io/ascii/tdat.pyo
 ${PYSITELIB}/astropy/io/ascii/tests/__init__.py
 ${PYSITELIB}/astropy/io/ascii/tests/__init__.pyc
 ${PYSITELIB}/astropy/io/ascii/tests/__init__.pyo
@@ -941,6 +985,7 @@ ${PYSITELIB}/astropy/io/ascii/tests/data
 ${PYSITELIB}/astropy/io/ascii/tests/data/html.html
 ${PYSITELIB}/astropy/io/ascii/tests/data/html2.html
 ${PYSITELIB}/astropy/io/ascii/tests/data/ipac.dat
+${PYSITELIB}/astropy/io/ascii/tests/data/ipac.dat.Z
 ${PYSITELIB}/astropy/io/ascii/tests/data/ipac.dat.bz2
 ${PYSITELIB}/astropy/io/ascii/tests/data/ipac.dat.xz
 ${PYSITELIB}/astropy/io/ascii/tests/data/latex1.tex
@@ -958,6 +1003,7 @@ ${PYSITELIB}/astropy/io/ascii/tests/data
 ${PYSITELIB}/astropy/io/ascii/tests/data/sextractor2.dat
 ${PYSITELIB}/astropy/io/ascii/tests/data/sextractor3.dat
 ${PYSITELIB}/astropy/io/ascii/tests/data/short.rdb
+${PYSITELIB}/astropy/io/ascii/tests/data/short.rdb.Z
 ${PYSITELIB}/astropy/io/ascii/tests/data/short.rdb.bz2
 ${PYSITELIB}/astropy/io/ascii/tests/data/short.rdb.gz
 ${PYSITELIB}/astropy/io/ascii/tests/data/short.rdb.xz
@@ -1016,6 +1062,9 @@ ${PYSITELIB}/astropy/io/ascii/tests/test
 ${PYSITELIB}/astropy/io/ascii/tests/test_rst.py
 ${PYSITELIB}/astropy/io/ascii/tests/test_rst.pyc
 ${PYSITELIB}/astropy/io/ascii/tests/test_rst.pyo
+${PYSITELIB}/astropy/io/ascii/tests/test_tdat.py
+${PYSITELIB}/astropy/io/ascii/tests/test_tdat.pyc
+${PYSITELIB}/astropy/io/ascii/tests/test_tdat.pyo
 ${PYSITELIB}/astropy/io/ascii/tests/test_types.py
 ${PYSITELIB}/astropy/io/ascii/tests/test_types.pyc
 ${PYSITELIB}/astropy/io/ascii/tests/test_types.pyo
@@ -1188,6 +1237,7 @@ ${PYSITELIB}/astropy/io/fits/tests/data/
 ${PYSITELIB}/astropy/io/fits/tests/data/group.fits
 ${PYSITELIB}/astropy/io/fits/tests/data/history_header.fits
 ${PYSITELIB}/astropy/io/fits/tests/data/invalid/group_invalid.fits
+${PYSITELIB}/astropy/io/fits/tests/data/lzw.fits.Z
 ${PYSITELIB}/astropy/io/fits/tests/data/memtest.fits
 ${PYSITELIB}/astropy/io/fits/tests/data/o4sp040b0_raw.fits
 ${PYSITELIB}/astropy/io/fits/tests/data/random_groups.fits
@@ -1298,6 +1348,18 @@ ${PYSITELIB}/astropy/io/misc/parquet.pyo
 ${PYSITELIB}/astropy/io/misc/pickle_helpers.py
 ${PYSITELIB}/astropy/io/misc/pickle_helpers.pyc
 ${PYSITELIB}/astropy/io/misc/pickle_helpers.pyo
+${PYSITELIB}/astropy/io/misc/pyarrow/__init__.py
+${PYSITELIB}/astropy/io/misc/pyarrow/__init__.pyc
+${PYSITELIB}/astropy/io/misc/pyarrow/__init__.pyo
+${PYSITELIB}/astropy/io/misc/pyarrow/csv.py
+${PYSITELIB}/astropy/io/misc/pyarrow/csv.pyc
+${PYSITELIB}/astropy/io/misc/pyarrow/csv.pyo
+${PYSITELIB}/astropy/io/misc/pyarrow/tests/__init__.py
+${PYSITELIB}/astropy/io/misc/pyarrow/tests/__init__.pyc
+${PYSITELIB}/astropy/io/misc/pyarrow/tests/__init__.pyo
+${PYSITELIB}/astropy/io/misc/pyarrow/tests/test_csv.py
+${PYSITELIB}/astropy/io/misc/pyarrow/tests/test_csv.pyc
+${PYSITELIB}/astropy/io/misc/pyarrow/tests/test_csv.pyo
 ${PYSITELIB}/astropy/io/misc/tests/__init__.py
 ${PYSITELIB}/astropy/io/misc/tests/__init__.pyc
 ${PYSITELIB}/astropy/io/misc/tests/__init__.pyo
@@ -1375,7 +1437,11 @@ ${PYSITELIB}/astropy/io/votable/data/VOT
 ${PYSITELIB}/astropy/io/votable/data/VOTable.v1.3.xsd
 ${PYSITELIB}/astropy/io/votable/data/VOTable.v1.4.xsd
 ${PYSITELIB}/astropy/io/votable/data/VOTable.v1.5.xsd
+${PYSITELIB}/astropy/io/votable/data/ivoa-vocalubary_refframe-v20220222.json
 ${PYSITELIB}/astropy/io/votable/data/ucd1p-words.txt
+${PYSITELIB}/astropy/io/votable/dataorigin.py
+${PYSITELIB}/astropy/io/votable/dataorigin.pyc
+${PYSITELIB}/astropy/io/votable/dataorigin.pyo
 ${PYSITELIB}/astropy/io/votable/exceptions.py
 ${PYSITELIB}/astropy/io/votable/exceptions.pyc
 ${PYSITELIB}/astropy/io/votable/exceptions.pyo
@@ -1424,6 +1490,9 @@ ${PYSITELIB}/astropy/io/votable/tests/te
 ${PYSITELIB}/astropy/io/votable/tests/test_coosys.py
 ${PYSITELIB}/astropy/io/votable/tests/test_coosys.pyc
 ${PYSITELIB}/astropy/io/votable/tests/test_coosys.pyo
+${PYSITELIB}/astropy/io/votable/tests/test_dataorigin.py
+${PYSITELIB}/astropy/io/votable/tests/test_dataorigin.pyc
+${PYSITELIB}/astropy/io/votable/tests/test_dataorigin.pyo
 ${PYSITELIB}/astropy/io/votable/tests/test_exception.py
 ${PYSITELIB}/astropy/io/votable/tests/test_exception.pyc
 ${PYSITELIB}/astropy/io/votable/tests/test_exception.pyo
@@ -1673,6 +1742,9 @@ ${PYSITELIB}/astropy/nddata/ccddata.pyo
 ${PYSITELIB}/astropy/nddata/compat.py
 ${PYSITELIB}/astropy/nddata/compat.pyc
 ${PYSITELIB}/astropy/nddata/compat.pyo
+${PYSITELIB}/astropy/nddata/covariance.py
+${PYSITELIB}/astropy/nddata/covariance.pyc
+${PYSITELIB}/astropy/nddata/covariance.pyo
 ${PYSITELIB}/astropy/nddata/decorators.py
 ${PYSITELIB}/astropy/nddata/decorators.pyc
 ${PYSITELIB}/astropy/nddata/decorators.pyo
@@ -1731,6 +1803,9 @@ ${PYSITELIB}/astropy/nddata/tests/test_c
 ${PYSITELIB}/astropy/nddata/tests/test_compat.py
 ${PYSITELIB}/astropy/nddata/tests/test_compat.pyc
 ${PYSITELIB}/astropy/nddata/tests/test_compat.pyo
+${PYSITELIB}/astropy/nddata/tests/test_covariance.py
+${PYSITELIB}/astropy/nddata/tests/test_covariance.pyc
+${PYSITELIB}/astropy/nddata/tests/test_covariance.pyo
 ${PYSITELIB}/astropy/nddata/tests/test_decorators.py
 ${PYSITELIB}/astropy/nddata/tests/test_decorators.pyc
 ${PYSITELIB}/astropy/nddata/tests/test_decorators.pyo
@@ -2634,6 +2709,9 @@ ${PYSITELIB}/astropy/utils/masked/tests/
 ${PYSITELIB}/astropy/utils/masked/tests/test_containers.py
 ${PYSITELIB}/astropy/utils/masked/tests/test_containers.pyc
 ${PYSITELIB}/astropy/utils/masked/tests/test_containers.pyo
+${PYSITELIB}/astropy/utils/masked/tests/test_dynamic_subclasses.py
+${PYSITELIB}/astropy/utils/masked/tests/test_dynamic_subclasses.pyc
+${PYSITELIB}/astropy/utils/masked/tests/test_dynamic_subclasses.pyo
 ${PYSITELIB}/astropy/utils/masked/tests/test_function_helpers.py
 ${PYSITELIB}/astropy/utils/masked/tests/test_function_helpers.pyc
 ${PYSITELIB}/astropy/utils/masked/tests/test_function_helpers.pyo
@@ -2694,6 +2772,7 @@ ${PYSITELIB}/astropy/utils/tests/data/al
 ${PYSITELIB}/astropy/utils/tests/data/dataurl/index.html
 ${PYSITELIB}/astropy/utils/tests/data/dataurl_mirror/index.html
 ${PYSITELIB}/astropy/utils/tests/data/local.dat
+${PYSITELIB}/astropy/utils/tests/data/local.dat.Z
 ${PYSITELIB}/astropy/utils/tests/data/local.dat.bz2
 ${PYSITELIB}/astropy/utils/tests/data/local.dat.gz
 ${PYSITELIB}/astropy/utils/tests/data/local.dat.xz
@@ -2702,6 +2781,7 @@ ${PYSITELIB}/astropy/utils/tests/data/te
 ${PYSITELIB}/astropy/utils/tests/data/test_package/__init__.pyo
 ${PYSITELIB}/astropy/utils/tests/data/test_package/data/foo.txt
 ${PYSITELIB}/astropy/utils/tests/data/unicode.txt
+${PYSITELIB}/astropy/utils/tests/data/unicode.txt.Z
 ${PYSITELIB}/astropy/utils/tests/data/unicode.txt.bz2
 ${PYSITELIB}/astropy/utils/tests/data/unicode.txt.gz
 ${PYSITELIB}/astropy/utils/tests/data/unicode.txt.xz

Index: pkgsrc/math/py-astropy/distinfo
diff -u pkgsrc/math/py-astropy/distinfo:1.14 pkgsrc/math/py-astropy/distinfo:1.15
--- pkgsrc/math/py-astropy/distinfo:1.14        Wed May 14 14:40:55 2025
+++ pkgsrc/math/py-astropy/distinfo     Fri Jun 13 07:06:41 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.14 2025/05/14 14:40:55 adam Exp $
+$NetBSD: distinfo,v 1.15 2025/06/13 07:06:41 adam Exp $
 
-BLAKE2s (astropy-7.0.2.tar.gz) = 4ba34dff06aa4bee6416597a9db5dd5d2d05d192d192fb65ca655d0230805b6e
-SHA512 (astropy-7.0.2.tar.gz) = 0547532b88d8fc219feed76dfa124deae0407421ae02923cd26a26557f3139cefe36dd5773a02a9a907063f6ffb34c47af10208ff9d242188e0777e2501ec3a3
-Size (astropy-7.0.2.tar.gz) = 7149131 bytes
+BLAKE2s (astropy-7.1.0.tar.gz) = 4c9f8f05745d79437ac5687d5bc40a8ee1e007ef0b76d33da7a2bf66182b548f
+SHA512 (astropy-7.1.0.tar.gz) = 5a336d8f7feb0da15fa89363a190fff4e4ac47cf90d07c0e472d69663185a43cd9a598e5a9e1b530b08f89a089c907f44b873cee25c8d537a022d0543f577f15
+Size (astropy-7.1.0.tar.gz) = 6976116 bytes



Home | Main Index | Thread Index | Old Index