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:           Mon Jul 13 12:03:10 UTC 2026

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

Log Message:
py-astropy: updated to 8.0.1

8.0.1 (2026-07-03)

API Changes

astropy.utils

- Astropy will now no longer download the latest IERS-A table over the network unless it is actually needed, and will also not warn about download issues unless all mirrors fail. The 
``IERS_Auto.open`` method now always reads the table bundled in ``astropy-iers-data`` (or a ``finals2000A.all`` file in the current working directory, if present), and the auto-download is deferred 
until a calculation actually requests ``UT1-UTC`` or polar motion values beyond the predictive range of the bundled table while that table is older than ``astropy.utils.iers.conf.auto_max_age`` days. 
This avoids network access, and the associated warnings when offline, in the common case where the bundled table is recent enough.

Bug Fixes

astropy.io.fits

- Fixed a regression where a FITS logical (``'L'``) column created with
  ``BinTableHDU.from_columns(..., nrows=N)`` and no input array stored its
  values as NULL (``b'\x00'``) instead of False (``b'F'``). Rows later
  assigned ``False`` were silently written as NULL, and a spurious
  ``contains NULL`` warning was emitted when reading the file back.

- Fixed a bug where a byte other than the FITS L wire-format values ``b'T'``,
  ``b'F'`` and ``b'\x00'`` assigned into a fixed-length logical (``'L'``) column
  read with ``logical_as_bytes=True`` was written to the file unchecked (and
  silently read back as ``False``). Such bytes now raise ``ValueError`` on write,
  matching the validation applied to ``|S1`` column input at construction time.

- Fixed an incorrect ``DATASUM`` (and therefore ``CHECKSUM``) being written for
  byte-swapped binary tables larger than 64 kB. The data was checksummed in
  chunks that were not aligned to 4-byte word boundaries, so the stored value was
  valid in memory but failed to verify once the file was read back.

astropy.modeling

- Bugfix for a ``Parameter`` with a custom ``getter`` / ``setter`` pair raising an
  ``AttributeError`` when accessing the ``value`` of the ``Parameter`` before any
  value for the parameter has been set. The ``Parameter`` will now return the result
  of the ``getter`` applied to a ``nan`` value in this case which is consistent
  with the behavior of a ``Parameter`` without a custom ``getter`` / ``setter`` pair.

astropy.nddata

- Fix unexpected behavior in ``Cutout2D.plot_on_original()``. The displayed region spanned pixels not included in the cutout array.

astropy.table

- Fixed a bug where a ``Table.loc[]`` range query using the default
  ``SortedArray`` index engine silently dropped rows when the upper bound
  matched a value that appears more than once in the indexed column.

- Fixed a bug where a ``Table.loc[]`` range query using the ``BST`` index
  engine returned rows in scrambled order if rows had been added after the
  index was created.

astropy.units

- Fixed a bug where ``numpy.lib.recfunctions.structured_to_unstructured`` failed when applied to a ``StructuredQuantity`` by improving unit extraction logic.

astropy.visualization

- Fixed issues with the placement of WCSAxes tick labels for non-perpendicular grids or ticks.

astropy.wcs

- Fix caching of ``wcs.world_axis_object_components`` and ``world_axis_object_classes`` in cases where the equinox was NaN


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 pkgsrc/math/py-astropy/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/math/py-astropy/PLIST
cvs rdiff -u -r1.17 -r1.18 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.28 pkgsrc/math/py-astropy/Makefile:1.29
--- pkgsrc/math/py-astropy/Makefile:1.28        Sun Jun 28 15:41:28 2026
+++ pkgsrc/math/py-astropy/Makefile     Mon Jul 13 12:03:10 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.28 2026/06/28 15:41:28 wiz Exp $
+# $NetBSD: Makefile,v 1.29 2026/07/13 12:03:10 adam Exp $
 
-DISTNAME=      astropy-7.2.0
+DISTNAME=      astropy-8.0.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=a/astropy/}
@@ -11,16 +11,17 @@ COMMENT=    Python module for astronomical 
 LICENSE=       modified-bsd
 
 TOOL_DEPENDS+= ${PYPKGPREFIX}-cython>=3.0.0:../../devel/py-cython
-TOOL_DEPENDS+= ${PYPKGPREFIX}-extension-helpers>=1:../../devel/py-extension-helpers
+TOOL_DEPENDS+= ${PYPKGPREFIX}-extension-helpers>=1.4:../../devel/py-extension-helpers
 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=8.0.0:../../devel/py-setuptools_scm
-DEPENDS+=      ${PYPKGPREFIX}-astropy-iers-data>=0.2025.10.27.0.39.10:../../math/py-astropy-iers-data
-DEPENDS+=      ${PYPKGPREFIX}-pyerfa>=2.0.1.1:../../math/py-pyerfa
-DEPENDS+=      ${PYPKGPREFIX}-packaging>=22.0:../../devel/py-packaging
+DEPENDS+=      ${PYPKGPREFIX}-astropy-iers-data>=0.2026.6.22.1.23.34:../../math/py-astropy-iers-data
+DEPENDS+=      ${PYPKGPREFIX}-pyerfa>=2.0.1.3:../../math/py-pyerfa
+DEPENDS+=      ${PYPKGPREFIX}-packaging>=25.0:../../devel/py-packaging
 DEPENDS+=      ${PYPKGPREFIX}-yaml>=6.0.0:../../textproc/py-yaml
 # recommended
-DEPENDS+=      ${PYPKGPREFIX}-matplotlib>=3.8.0:../../graphics/py-matplotlib
-DEPENDS+=      ${PYPKGPREFIX}-scipy>=1.9.2:../../math/py-scipy
+DEPENDS+=      ${PYPKGPREFIX}-matplotlib>=3.8.4:../../graphics/py-matplotlib
+DEPENDS+=      ${PYPKGPREFIX}-narwhals>=1.42.0:../../misc/py-narwhals
+DEPENDS+=      ${PYPKGPREFIX}-scipy>=1.13:../../math/py-scipy
 TEST_DEPENDS+= ${PYPKGPREFIX}-coverage>=6.4.4:../../devel/py-coverage
 #TEST_DEPENDS+=        ${PYPKGPREFIX}-test-astropy>=0.10.0:../../math/py-test-astropy
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-astropy-header>=0.2.1:../../devel/py-test-astropy-header

Index: pkgsrc/math/py-astropy/PLIST
diff -u pkgsrc/math/py-astropy/PLIST:1.12 pkgsrc/math/py-astropy/PLIST:1.13
--- pkgsrc/math/py-astropy/PLIST:1.12   Tue Dec  9 18:12:57 2025
+++ pkgsrc/math/py-astropy/PLIST        Mon Jul 13 12:03:10 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.12 2025/12/09 18:12:57 adam Exp $
+@comment $NetBSD: PLIST,v 1.13 2026/07/13 12:03:10 adam Exp $
 bin/fits2bitmap
 bin/fitscheck
 bin/fitsdiff
@@ -28,6 +28,8 @@ ${PYSITELIB}/${WHEEL_INFODIR}/licenses/l
 ${PYSITELIB}/${WHEEL_INFODIR}/licenses/licenses/PYTHON.rst
 ${PYSITELIB}/${WHEEL_INFODIR}/licenses/licenses/README.rst
 ${PYSITELIB}/${WHEEL_INFODIR}/licenses/licenses/WCSLIB_LICENSE.rst
+${PYSITELIB}/${WHEEL_INFODIR}/scm_file_list.json
+${PYSITELIB}/${WHEEL_INFODIR}/scm_version.json
 ${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/astropy/CITATION
 ${PYSITELIB}/astropy/__init__.py
@@ -41,6 +43,9 @@ ${PYSITELIB}/astropy/compiler_version.so
 ${PYSITELIB}/astropy/config/__init__.py
 ${PYSITELIB}/astropy/config/__init__.pyc
 ${PYSITELIB}/astropy/config/__init__.pyo
+${PYSITELIB}/astropy/config/_tempfile_shim.py
+${PYSITELIB}/astropy/config/_tempfile_shim.pyc
+${PYSITELIB}/astropy/config/_tempfile_shim.pyo
 ${PYSITELIB}/astropy/config/configuration.py
 ${PYSITELIB}/astropy/config/configuration.pyc
 ${PYSITELIB}/astropy/config/configuration.pyo
@@ -50,10 +55,13 @@ ${PYSITELIB}/astropy/config/paths.pyo
 ${PYSITELIB}/astropy/config/tests/__init__.py
 ${PYSITELIB}/astropy/config/tests/__init__.pyc
 ${PYSITELIB}/astropy/config/tests/__init__.pyo
-${PYSITELIB}/astropy/config/tests/data/alias.cfg
-${PYSITELIB}/astropy/config/tests/data/deprecated.cfg
+${PYSITELIB}/astropy/config/tests/data/alias/astropy/astropy.cfg
+${PYSITELIB}/astropy/config/tests/data/deprecated/astropy/astropy.cfg
 ${PYSITELIB}/astropy/config/tests/data/empty.cfg
 ${PYSITELIB}/astropy/config/tests/data/not_empty.cfg
+${PYSITELIB}/astropy/config/tests/test_concurrency.py
+${PYSITELIB}/astropy/config/tests/test_concurrency.pyc
+${PYSITELIB}/astropy/config/tests/test_concurrency.pyo
 ${PYSITELIB}/astropy/config/tests/test_configs.py
 ${PYSITELIB}/astropy/config/tests/test_configs.pyc
 ${PYSITELIB}/astropy/config/tests/test_configs.pyo
@@ -72,6 +80,9 @@ ${PYSITELIB}/astropy/constants/astropyco
 ${PYSITELIB}/astropy/constants/astropyconst40.py
 ${PYSITELIB}/astropy/constants/astropyconst40.pyc
 ${PYSITELIB}/astropy/constants/astropyconst40.pyo
+${PYSITELIB}/astropy/constants/astropyconst80.py
+${PYSITELIB}/astropy/constants/astropyconst80.pyc
+${PYSITELIB}/astropy/constants/astropyconst80.pyo
 ${PYSITELIB}/astropy/constants/cgs.py
 ${PYSITELIB}/astropy/constants/cgs.pyc
 ${PYSITELIB}/astropy/constants/cgs.pyo
@@ -615,6 +626,9 @@ ${PYSITELIB}/astropy/cosmology/_src/io/b
 ${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/mrt.py
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/mrt.pyc
+${PYSITELIB}/astropy/cosmology/_src/io/builtin/mrt.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
@@ -740,6 +754,9 @@ ${PYSITELIB}/astropy/cosmology/_src/test
 ${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_mrt.py
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_mrt.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/io/test_mrt.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
@@ -767,9 +784,6 @@ ${PYSITELIB}/astropy/cosmology/_src/test
 ${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
@@ -785,6 +799,48 @@ ${PYSITELIB}/astropy/cosmology/_src/test
 ${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/tests/traits/__init__.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/__init__.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/__init__.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/helper.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/helper.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/helper.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_baryons.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_baryons.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_baryons.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_curvature.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_curvature.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_curvature.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_darkenergy.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_darkenergy.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_darkenergy.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_darkmatter.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_darkmatter.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_darkmatter.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_hubble.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_hubble.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_hubble.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_matter.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_matter.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_matter.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_neutrino.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_neutrino.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_neutrino.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_photoncomponent.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_photoncomponent.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_photoncomponent.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_rhocrit.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_rhocrit.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_rhocrit.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_scale_factor.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_scale_factor.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_scale_factor.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_tcmb.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_tcmb.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_tcmb.pyo
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_totalcomponent.py
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_totalcomponent.pyc
+${PYSITELIB}/astropy/cosmology/_src/tests/traits/test_trait_totalcomponent.pyo
 ${PYSITELIB}/astropy/cosmology/_src/traits/__init__.py
 ${PYSITELIB}/astropy/cosmology/_src/traits/__init__.pyc
 ${PYSITELIB}/astropy/cosmology/_src/traits/__init__.pyo
@@ -803,9 +859,12 @@ ${PYSITELIB}/astropy/cosmology/_src/trai
 ${PYSITELIB}/astropy/cosmology/_src/traits/hubble.py
 ${PYSITELIB}/astropy/cosmology/_src/traits/hubble.pyc
 ${PYSITELIB}/astropy/cosmology/_src/traits/hubble.pyo
-${PYSITELIB}/astropy/cosmology/_src/traits/matterdensity.py
-${PYSITELIB}/astropy/cosmology/_src/traits/matterdensity.pyc
-${PYSITELIB}/astropy/cosmology/_src/traits/matterdensity.pyo
+${PYSITELIB}/astropy/cosmology/_src/traits/matter.py
+${PYSITELIB}/astropy/cosmology/_src/traits/matter.pyc
+${PYSITELIB}/astropy/cosmology/_src/traits/matter.pyo
+${PYSITELIB}/astropy/cosmology/_src/traits/neutrino.py
+${PYSITELIB}/astropy/cosmology/_src/traits/neutrino.pyc
+${PYSITELIB}/astropy/cosmology/_src/traits/neutrino.pyo
 ${PYSITELIB}/astropy/cosmology/_src/traits/photoncomponent.py
 ${PYSITELIB}/astropy/cosmology/_src/traits/photoncomponent.pyc
 ${PYSITELIB}/astropy/cosmology/_src/traits/photoncomponent.pyo
@@ -833,12 +892,6 @@ ${PYSITELIB}/astropy/cosmology/_src/unit
 ${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
-${PYSITELIB}/astropy/cosmology/core.py
-${PYSITELIB}/astropy/cosmology/core.pyc
-${PYSITELIB}/astropy/cosmology/core.pyo
 ${PYSITELIB}/astropy/cosmology/data/Planck13.ecsv
 ${PYSITELIB}/astropy/cosmology/data/Planck15.ecsv
 ${PYSITELIB}/astropy/cosmology/data/Planck18.ecsv
@@ -847,24 +900,21 @@ ${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.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/tests/__init__.py
+${PYSITELIB}/astropy/cosmology/tests/__init__.pyc
+${PYSITELIB}/astropy/cosmology/tests/__init__.pyo
+${PYSITELIB}/astropy/cosmology/tests/test_scalar_inv_efuncs.py
+${PYSITELIB}/astropy/cosmology/tests/test_scalar_inv_efuncs.pyc
+${PYSITELIB}/astropy/cosmology/tests/test_scalar_inv_efuncs.pyo
 ${PYSITELIB}/astropy/cosmology/traits.py
 ${PYSITELIB}/astropy/cosmology/traits.pyc
 ${PYSITELIB}/astropy/cosmology/traits.pyo
@@ -949,6 +999,9 @@ ${PYSITELIB}/astropy/io/ascii/ipac.pyo
 ${PYSITELIB}/astropy/io/ascii/latex.py
 ${PYSITELIB}/astropy/io/ascii/latex.pyc
 ${PYSITELIB}/astropy/io/ascii/latex.pyo
+${PYSITELIB}/astropy/io/ascii/mesa.py
+${PYSITELIB}/astropy/io/ascii/mesa.pyc
+${PYSITELIB}/astropy/io/ascii/mesa.pyo
 ${PYSITELIB}/astropy/io/ascii/misc.py
 ${PYSITELIB}/astropy/io/ascii/misc.pyc
 ${PYSITELIB}/astropy/io/ascii/misc.pyo
@@ -983,6 +1036,17 @@ ${PYSITELIB}/astropy/io/ascii/tests/data
 ${PYSITELIB}/astropy/io/ascii/tests/data/bad.txt
 ${PYSITELIB}/astropy/io/ascii/tests/data/bars_at_ends.txt
 ${PYSITELIB}/astropy/io/ascii/tests/data/cds.dat
+${PYSITELIB}/astropy/io/ascii/tests/data/cds/datasplitcomplete/ReadMe
+${PYSITELIB}/astropy/io/ascii/tests/data/cds/datasplitcomplete/some_other_file.dat
+${PYSITELIB}/astropy/io/ascii/tests/data/cds/datasplitcomplete/table1.dat.00
+${PYSITELIB}/astropy/io/ascii/tests/data/cds/datasplitcomplete/table1.dat.01
+${PYSITELIB}/astropy/io/ascii/tests/data/cds/datasplitcompletegz/ReadMe
+${PYSITELIB}/astropy/io/ascii/tests/data/cds/datasplitcompletegz/table1.dat.000.gz
+${PYSITELIB}/astropy/io/ascii/tests/data/cds/datasplitcompletegz/table1.dat.001.gz
+${PYSITELIB}/astropy/io/ascii/tests/data/cds/datasplitincomplete/ReadMe
+${PYSITELIB}/astropy/io/ascii/tests/data/cds/datasplitincomplete/some_other_file.dat
+${PYSITELIB}/astropy/io/ascii/tests/data/cds/datasplitincomplete/table1.dat.00
+${PYSITELIB}/astropy/io/ascii/tests/data/cds/datasplitincomplete/table1.dat.02
 ${PYSITELIB}/astropy/io/ascii/tests/data/cds/description/ReadMe
 ${PYSITELIB}/astropy/io/ascii/tests/data/cds/description/table.dat
 ${PYSITELIB}/astropy/io/ascii/tests/data/cds/glob/ReadMe
@@ -1010,6 +1074,8 @@ ${PYSITELIB}/astropy/io/ascii/tests/data
 ${PYSITELIB}/astropy/io/ascii/tests/data/daophot4.dat
 ${PYSITELIB}/astropy/io/ascii/tests/data/fill_values.txt
 ${PYSITELIB}/astropy/io/ascii/tests/data/fixed_width_2_line.txt
+${PYSITELIB}/astropy/io/ascii/tests/data/history_mesa.data
+${PYSITELIB}/astropy/io/ascii/tests/data/history_mesa_with_restarts.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
@@ -1027,6 +1093,7 @@ ${PYSITELIB}/astropy/io/ascii/tests/data
 ${PYSITELIB}/astropy/io/ascii/tests/data/no_data_sextractor.dat
 ${PYSITELIB}/astropy/io/ascii/tests/data/no_data_with_header.dat
 ${PYSITELIB}/astropy/io/ascii/tests/data/no_data_without_header.dat
+${PYSITELIB}/astropy/io/ascii/tests/data/profile_mesa.data
 ${PYSITELIB}/astropy/io/ascii/tests/data/sextractor.dat
 ${PYSITELIB}/astropy/io/ascii/tests/data/sextractor2.dat
 ${PYSITELIB}/astropy/io/ascii/tests/data/sextractor3.dat
@@ -1081,6 +1148,9 @@ ${PYSITELIB}/astropy/io/ascii/tests/test
 ${PYSITELIB}/astropy/io/ascii/tests/test_ipac_definitions.py
 ${PYSITELIB}/astropy/io/ascii/tests/test_ipac_definitions.pyc
 ${PYSITELIB}/astropy/io/ascii/tests/test_ipac_definitions.pyo
+${PYSITELIB}/astropy/io/ascii/tests/test_mesa.py
+${PYSITELIB}/astropy/io/ascii/tests/test_mesa.pyc
+${PYSITELIB}/astropy/io/ascii/tests/test_mesa.pyo
 ${PYSITELIB}/astropy/io/ascii/tests/test_qdp.py
 ${PYSITELIB}/astropy/io/ascii/tests/test_qdp.pyc
 ${PYSITELIB}/astropy/io/ascii/tests/test_qdp.pyo
@@ -1105,6 +1175,9 @@ ${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/_logical_helpers.py
+${PYSITELIB}/astropy/io/fits/_logical_helpers.pyc
+${PYSITELIB}/astropy/io/fits/_logical_helpers.pyo
 ${PYSITELIB}/astropy/io/fits/_utils.pyx
 ${PYSITELIB}/astropy/io/fits/_utils.so
 ${PYSITELIB}/astropy/io/fits/card.py
@@ -1265,6 +1338,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/logical_null.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
@@ -1279,6 +1353,9 @@ ${PYSITELIB}/astropy/io/fits/tests/data/
 ${PYSITELIB}/astropy/io/fits/tests/data/theap-gap.fits
 ${PYSITELIB}/astropy/io/fits/tests/data/variable_length_table.fits
 ${PYSITELIB}/astropy/io/fits/tests/data/verify.fits
+${PYSITELIB}/astropy/io/fits/tests/data/vla_logical_all_zero.fits
+${PYSITELIB}/astropy/io/fits/tests/data/vla_logical_null.fits
+${PYSITELIB}/astropy/io/fits/tests/data/vla_logical_pre_fix.fits
 ${PYSITELIB}/astropy/io/fits/tests/data/zerowidth.fits
 ${PYSITELIB}/astropy/io/fits/tests/test_checksum.py
 ${PYSITELIB}/astropy/io/fits/tests/test_checksum.pyc
@@ -1331,6 +1408,9 @@ ${PYSITELIB}/astropy/io/fits/tests/test_
 ${PYSITELIB}/astropy/io/fits/tests/test_image_dask.py
 ${PYSITELIB}/astropy/io/fits/tests/test_image_dask.pyc
 ${PYSITELIB}/astropy/io/fits/tests/test_image_dask.pyo
+${PYSITELIB}/astropy/io/fits/tests/test_logical_helpers.py
+${PYSITELIB}/astropy/io/fits/tests/test_logical_helpers.pyc
+${PYSITELIB}/astropy/io/fits/tests/test_logical_helpers.pyo
 ${PYSITELIB}/astropy/io/fits/tests/test_nonstandard.py
 ${PYSITELIB}/astropy/io/fits/tests/test_nonstandard.pyc
 ${PYSITELIB}/astropy/io/fits/tests/test_nonstandard.pyo
@@ -1476,10 +1556,12 @@ ${PYSITELIB}/astropy/io/votable/dataorig
 ${PYSITELIB}/astropy/io/votable/exceptions.py
 ${PYSITELIB}/astropy/io/votable/exceptions.pyc
 ${PYSITELIB}/astropy/io/votable/exceptions.pyo
+${PYSITELIB}/astropy/io/votable/fast_converters.so
 ${PYSITELIB}/astropy/io/votable/setup_package.py
 ${PYSITELIB}/astropy/io/votable/setup_package.pyc
 ${PYSITELIB}/astropy/io/votable/setup_package.pyo
 ${PYSITELIB}/astropy/io/votable/src/.gitignore
+${PYSITELIB}/astropy/io/votable/src/fast_converters.pyx
 ${PYSITELIB}/astropy/io/votable/src/tablewriter.c
 ${PYSITELIB}/astropy/io/votable/table.py
 ${PYSITELIB}/astropy/io/votable/table.pyc
@@ -1988,6 +2070,9 @@ ${PYSITELIB}/astropy/stats/tests/test_bi
 ${PYSITELIB}/astropy/stats/tests/test_circstats.py
 ${PYSITELIB}/astropy/stats/tests/test_circstats.pyc
 ${PYSITELIB}/astropy/stats/tests/test_circstats.pyo
+${PYSITELIB}/astropy/stats/tests/test_fast_sigma_clip.py
+${PYSITELIB}/astropy/stats/tests/test_fast_sigma_clip.pyc
+${PYSITELIB}/astropy/stats/tests/test_fast_sigma_clip.pyo
 ${PYSITELIB}/astropy/stats/tests/test_funcs.py
 ${PYSITELIB}/astropy/stats/tests/test_funcs.pyc
 ${PYSITELIB}/astropy/stats/tests/test_funcs.pyo
@@ -2000,6 +2085,9 @@ ${PYSITELIB}/astropy/stats/tests/test_in
 ${PYSITELIB}/astropy/stats/tests/test_jackknife.py
 ${PYSITELIB}/astropy/stats/tests/test_jackknife.pyc
 ${PYSITELIB}/astropy/stats/tests/test_jackknife.pyo
+${PYSITELIB}/astropy/stats/tests/test_ks_2samp.py
+${PYSITELIB}/astropy/stats/tests/test_ks_2samp.pyc
+${PYSITELIB}/astropy/stats/tests/test_ks_2samp.pyo
 ${PYSITELIB}/astropy/stats/tests/test_sigma_clipping.py
 ${PYSITELIB}/astropy/stats/tests/test_sigma_clipping.pyc
 ${PYSITELIB}/astropy/stats/tests/test_sigma_clipping.pyo
@@ -2064,9 +2152,6 @@ ${PYSITELIB}/astropy/table/ndarray_mixin
 ${PYSITELIB}/astropy/table/notebook_backends.py
 ${PYSITELIB}/astropy/table/notebook_backends.pyc
 ${PYSITELIB}/astropy/table/notebook_backends.pyo
-${PYSITELIB}/astropy/table/np_utils.py
-${PYSITELIB}/astropy/table/np_utils.pyc
-${PYSITELIB}/astropy/table/np_utils.pyo
 ${PYSITELIB}/astropy/table/operations.py
 ${PYSITELIB}/astropy/table/operations.pyc
 ${PYSITELIB}/astropy/table/operations.pyo
@@ -2172,9 +2257,6 @@ ${PYSITELIB}/astropy/table/tests/test_ta
 ${PYSITELIB}/astropy/tests/__init__.py
 ${PYSITELIB}/astropy/tests/__init__.pyc
 ${PYSITELIB}/astropy/tests/__init__.pyo
-${PYSITELIB}/astropy/tests/command.py
-${PYSITELIB}/astropy/tests/command.pyc
-${PYSITELIB}/astropy/tests/command.pyo
 ${PYSITELIB}/astropy/tests/figures/__init__.py
 ${PYSITELIB}/astropy/tests/figures/__init__.pyc
 ${PYSITELIB}/astropy/tests/figures/__init__.pyo
@@ -2254,6 +2336,9 @@ ${PYSITELIB}/astropy/time/tests/test_mas
 ${PYSITELIB}/astropy/time/tests/test_methods.py
 ${PYSITELIB}/astropy/time/tests/test_methods.pyc
 ${PYSITELIB}/astropy/time/tests/test_methods.pyo
+${PYSITELIB}/astropy/time/tests/test_parse_times_extension.py
+${PYSITELIB}/astropy/time/tests/test_parse_times_extension.pyc
+${PYSITELIB}/astropy/time/tests/test_parse_times_extension.pyo
 ${PYSITELIB}/astropy/time/tests/test_pickle.py
 ${PYSITELIB}/astropy/time/tests/test_pickle.pyc
 ${PYSITELIB}/astropy/time/tests/test_pickle.pyo
@@ -2338,6 +2423,9 @@ ${PYSITELIB}/astropy/timeseries/periodog
 ${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/_statistics.py
 ${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/_statistics.pyc
 ${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/_statistics.pyo
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/_testing.py
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/_testing.pyc
+${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/_testing.pyo
 ${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/core.py
 ${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/core.pyc
 ${PYSITELIB}/astropy/timeseries/periodograms/lombscargle/core.pyo
@@ -2774,6 +2862,9 @@ ${PYSITELIB}/astropy/utils/masked/tests/
 ${PYSITELIB}/astropy/utils/masked/tests/test_masked.py
 ${PYSITELIB}/astropy/utils/masked/tests/test_masked.pyc
 ${PYSITELIB}/astropy/utils/masked/tests/test_masked.pyo
+${PYSITELIB}/astropy/utils/masked/tests/test_pickle.py
+${PYSITELIB}/astropy/utils/masked/tests/test_pickle.pyc
+${PYSITELIB}/astropy/utils/masked/tests/test_pickle.pyo
 ${PYSITELIB}/astropy/utils/masked/tests/test_table.py
 ${PYSITELIB}/astropy/utils/masked/tests/test_table.pyc
 ${PYSITELIB}/astropy/utils/masked/tests/test_table.pyo
@@ -2816,7 +2907,6 @@ ${PYSITELIB}/astropy/utils/system_info.p
 ${PYSITELIB}/astropy/utils/tests/__init__.py
 ${PYSITELIB}/astropy/utils/tests/__init__.pyc
 ${PYSITELIB}/astropy/utils/tests/__init__.pyo
-${PYSITELIB}/astropy/utils/tests/data/.hidden_file.txt
 ${PYSITELIB}/astropy/utils/tests/data/alias.cfg
 ${PYSITELIB}/astropy/utils/tests/data/dataurl/index.html
 ${PYSITELIB}/astropy/utils/tests/data/dataurl_mirror/index.html
@@ -2840,6 +2930,9 @@ ${PYSITELIB}/astropy/utils/tests/test_co
 ${PYSITELIB}/astropy/utils/tests/test_collections.py
 ${PYSITELIB}/astropy/utils/tests/test_collections.pyc
 ${PYSITELIB}/astropy/utils/tests/test_collections.pyo
+${PYSITELIB}/astropy/utils/tests/test_compat.py
+${PYSITELIB}/astropy/utils/tests/test_compat.pyc
+${PYSITELIB}/astropy/utils/tests/test_compat.pyo
 ${PYSITELIB}/astropy/utils/tests/test_console.py
 ${PYSITELIB}/astropy/utils/tests/test_console.pyc
 ${PYSITELIB}/astropy/utils/tests/test_console.pyo
@@ -3075,6 +3168,7 @@ ${PYSITELIB}/astropy/visualization/wcsax
 ${PYSITELIB}/astropy/visualization/wcsaxes/wcsapi.py
 ${PYSITELIB}/astropy/visualization/wcsaxes/wcsapi.pyc
 ${PYSITELIB}/astropy/visualization/wcsaxes/wcsapi.pyo
+${PYSITELIB}/astropy/wcs/.clang-format
 ${PYSITELIB}/astropy/wcs/__init__.py
 ${PYSITELIB}/astropy/wcs/__init__.pyc
 ${PYSITELIB}/astropy/wcs/__init__.pyo
@@ -3278,6 +3372,9 @@ ${PYSITELIB}/astropy/wcs/wcsapi/tests/__
 ${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/helpers.py
+${PYSITELIB}/astropy/wcs/wcsapi/tests/helpers.pyc
+${PYSITELIB}/astropy/wcs/wcsapi/tests/helpers.pyo
 ${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.17 pkgsrc/math/py-astropy/distinfo:1.18
--- pkgsrc/math/py-astropy/distinfo:1.17        Tue Dec  9 18:12:57 2025
+++ pkgsrc/math/py-astropy/distinfo     Mon Jul 13 12:03:10 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.17 2025/12/09 18:12:57 adam Exp $
+$NetBSD: distinfo,v 1.18 2026/07/13 12:03:10 adam Exp $
 
-BLAKE2s (astropy-7.2.0.tar.gz) = 1d087095ce91ce9f0e34b7ebe6395c1028ead70b364a5b0d544396021b7a85c1
-SHA512 (astropy-7.2.0.tar.gz) = 95dad9a304b9fb4b0447bb8c52fd973282dbe46f8ed104758eac3738b0a4fac889c233ecd6240ae2f210b7a11dd55e4e1e88feed5749b04b38d5f1acdffb79f5
-Size (astropy-7.2.0.tar.gz) = 7057774 bytes
+BLAKE2s (astropy-8.0.1.tar.gz) = f885a1c5ebbf7d287ba8614f525063ba3af0f07544ed9c7ff556e95aaa32c771
+SHA512 (astropy-8.0.1.tar.gz) = 5b71b01174786b679b9d5b689a3adbc103f9cad3db2dde4e6278da65e450345d682838569ccf28147fd4f2658ffd68bf04d59b5142181feedb11bf50e9249deb
+Size (astropy-8.0.1.tar.gz) = 7152500 bytes



Home | Main Index | Thread Index | Old Index