pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
py-asdf_astropy: update to 0.6.1.
Module Name: pkgsrc-wip
Committed By: Thomas Klausner <wiz%NetBSD.org@localhost>
Pushed By: wiz
Date: Wed May 15 08:45:25 2024 +0200
Changeset: 09b25e0e9df6870a34eb740a0afe4479ef7f6d41
Modified Files:
py-asdf_astropy/Makefile
py-asdf_astropy/PLIST
py-asdf_astropy/distinfo
Log Message:
py-asdf_astropy: update to 0.6.1.
0.6.1 (2024-04-05)
------------------
- update ``copy`` usage in ``Quantity`` converter to
deal with astropy 6.1 changes. [#224]
0.6.0 (2024-03-13)
------------------
- Add python 3.12 support. [#219]
- Update ASDF standard 1.6.0 support. [#219]
- Increase minimum versions for ``asdf-coordinates-schemas``
``asdf-transform-schemas`` and list ``asdf-standard`` as
a dependency. [#219]
0.5.0 (2023-11-15)
------------------
- Drop support for Python 3.8 in accordance with NEP 29. [#180]
- Update ``RepresentationConverter`` for new class paths in astropy [#181]
- Update Converters so that all Class Variables are immutable [#188]
- Remove ``oldest-supported-numpy`` from ``pyproject.toml`` ``build-system``
as this was never needed and will cause problems building on python 3.12 betas. [#193]
- Use unique uri for extensions that implement converters for core asdf types [#199]
- Add support for astropy.table.NdarrayMixin [#200]
- Update angle converters for new class paths in astropy [#207]
0.4.0 (2023-03-20)
------------------
- Update pins for ``asdf``, ``asdf-coordinates-schemas``, ``numpy``, and ``packaging``. [#164]
- Add serialization support for non-VOunits. [#142]
- Add serialization support for ``MagUnit`` based units. [#146]
- Document and add ``assert_model_roundtrip`` and ``assert_table_roundtrip`` to
``asdf_astropy.testing.helpers``. [#170]
0.3.0 (2022-11-29)
------------------
- Update citations. [#111]
- Switch to using ``pyproject.toml`` for package configuration. [#106]
- Fix bug with ``memmap`` of ``Quantity`` objects. [#125]
- Drop support for ``numpy-1.18``. [#116]
- Fix bug with ``str`` representations of ``astropy.time`` objects. [#132]
- Fix bug in preserving the ``dtype`` of ``Quantity`` objects. [#131]
0.2.2 (2022-08-22)
------------------
- Add converter for the new ``Schechter1D`` model. [#67]
- Add CITATION file. [#71]
- Add migration and quick-start documentation guides, and update minimum Python version [#77]
- Update ``FrameConverter`` to enable the use of multiple tags. [#81]
- Bugfixes for ``astropy.time`` converters. [#86]
- Remove unnecessary ``tag:`` from schemas. [#103]
- Add converters for ``ModelBoundingBox`` and ``CompoundBoundingBox``. [#69]
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=09b25e0e9df6870a34eb740a0afe4479ef7f6d41
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
py-asdf_astropy/Makefile | 25 ++++++++++++++++---------
py-asdf_astropy/PLIST | 43 +++++++++++++++++++++++++++++++++----------
py-asdf_astropy/distinfo | 6 +++---
3 files changed, 52 insertions(+), 22 deletions(-)
diffs:
diff --git a/py-asdf_astropy/Makefile b/py-asdf_astropy/Makefile
index 1ae3f05166..57503330d5 100644
--- a/py-asdf_astropy/Makefile
+++ b/py-asdf_astropy/Makefile
@@ -1,24 +1,31 @@
# $NetBSD$
-DISTNAME= asdf_astropy-0.2.1
-PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+DISTNAME= asdf-astropy-0.6.1
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/-/_/}
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_PYPI:=a/asdf_astropy/}
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE= https://pypi.org/project/asdf_astropy/
+HOMEPAGE= https://asdf-astropy.readthedocs.io/en/latest/
COMMENT= ASDF serialization support for astropy objects
LICENSE= modified-bsd
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=0:../../devel/py-setuptools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=0:../../devel/py-setuptools_scm
+TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel>=0:../../devel/py-wheel
+DEPENDS+= ${PYPKGPREFIX}-asdf>=2.13:../../math/py-asdf
+DEPENDS+= ${PYPKGPREFIX}-asdf-standard>=1.1.0:../../math/py-asdf-standard
+DEPENDS+= ${PYPKGPREFIX}-asdf-transform-schemas>=0.5:../../math/py-asdf-transform-schemas
+DEPENDS+= ${PYPKGPREFIX}-asdf_coordinates_schemas>=0.3:../../math/py-asdf_coordinates_schemas
DEPENDS+= ${PYPKGPREFIX}-astropy>=5.0.4:../../math/py-astropy
-DEPENDS+= ${PYPKGPREFIX}-asdf>=2.8.0:../../math/py-asdf
DEPENDS+= ${PYPKGPREFIX}-numpy>0:../../math/py-numpy
-DEPENDS+= ${PYPKGPREFIX}-asdf_coordinates_schemas>0:../../wip/py-asdf_coordinates_schemas
-DEPENDS+= ${PYPKGPREFIX}-asdf_transform_schemas>=0.2.2:../../wip/py-asdf_transform_schemas
-DEPENDS+= ${PYPKGPREFIX}-importlib-resources>=3:../../devel/py-importlib-resources
-DEPENDS+= ${PYPKGPREFIX}-packaging>=16.0:../../devel/py-packaging
+DEPENDS+= ${PYPKGPREFIX}-packaging>=19:../../devel/py-packaging
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-doctestplus>=0:../../devel/py-test-doctestplus
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-astropy-header>=0:../../devel/py-test-astropy-header
USE_LANGUAGES= # none
-.include "../../lang/python/egg.mk"
+PYTHON_VERSIONS_INCOMPATIBLE= 27 38
+
+.include "../../lang/python/wheel.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/py-asdf_astropy/PLIST b/py-asdf_astropy/PLIST
index 902dfae251..a6170947c5 100644
--- a/py-asdf_astropy/PLIST
+++ b/py-asdf_astropy/PLIST
@@ -1,11 +1,10 @@
@comment $NetBSD$
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
-${PYSITELIB}/${EGG_INFODIR}/zip-safe
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.rst
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
${PYSITELIB}/asdf_astropy/__init__.py
${PYSITELIB}/asdf_astropy/__init__.pyc
${PYSITELIB}/asdf_astropy/__init__.pyo
@@ -45,9 +44,6 @@ ${PYSITELIB}/asdf_astropy/converters/coordinates/spectral_coord.pyo
${PYSITELIB}/asdf_astropy/converters/coordinates/tests/__init__.py
${PYSITELIB}/asdf_astropy/converters/coordinates/tests/__init__.pyc
${PYSITELIB}/asdf_astropy/converters/coordinates/tests/__init__.pyo
-${PYSITELIB}/asdf_astropy/converters/coordinates/tests/helpers.py
-${PYSITELIB}/asdf_astropy/converters/coordinates/tests/helpers.pyc
-${PYSITELIB}/asdf_astropy/converters/coordinates/tests/helpers.pyo
${PYSITELIB}/asdf_astropy/converters/coordinates/tests/test_angle.py
${PYSITELIB}/asdf_astropy/converters/coordinates/tests/test_angle.pyc
${PYSITELIB}/asdf_astropy/converters/coordinates/tests/test_angle.pyo
@@ -135,6 +131,9 @@ ${PYSITELIB}/asdf_astropy/converters/transform/polynomial.pyo
${PYSITELIB}/asdf_astropy/converters/transform/projections.py
${PYSITELIB}/asdf_astropy/converters/transform/projections.pyc
${PYSITELIB}/asdf_astropy/converters/transform/projections.pyo
+${PYSITELIB}/asdf_astropy/converters/transform/properties.py
+${PYSITELIB}/asdf_astropy/converters/transform/properties.pyc
+${PYSITELIB}/asdf_astropy/converters/transform/properties.pyo
${PYSITELIB}/asdf_astropy/converters/transform/rotations.py
${PYSITELIB}/asdf_astropy/converters/transform/rotations.pyc
${PYSITELIB}/asdf_astropy/converters/transform/rotations.pyo
@@ -156,6 +155,9 @@ ${PYSITELIB}/asdf_astropy/converters/unit/__init__.pyo
${PYSITELIB}/asdf_astropy/converters/unit/equivalency.py
${PYSITELIB}/asdf_astropy/converters/unit/equivalency.pyc
${PYSITELIB}/asdf_astropy/converters/unit/equivalency.pyo
+${PYSITELIB}/asdf_astropy/converters/unit/magunit.py
+${PYSITELIB}/asdf_astropy/converters/unit/magunit.pyc
+${PYSITELIB}/asdf_astropy/converters/unit/magunit.pyo
${PYSITELIB}/asdf_astropy/converters/unit/quantity.py
${PYSITELIB}/asdf_astropy/converters/unit/quantity.pyc
${PYSITELIB}/asdf_astropy/converters/unit/quantity.pyo
@@ -165,6 +167,9 @@ ${PYSITELIB}/asdf_astropy/converters/unit/tests/__init__.pyo
${PYSITELIB}/asdf_astropy/converters/unit/tests/test_equivalency.py
${PYSITELIB}/asdf_astropy/converters/unit/tests/test_equivalency.pyc
${PYSITELIB}/asdf_astropy/converters/unit/tests/test_equivalency.pyo
+${PYSITELIB}/asdf_astropy/converters/unit/tests/test_magunit.py
+${PYSITELIB}/asdf_astropy/converters/unit/tests/test_magunit.pyc
+${PYSITELIB}/asdf_astropy/converters/unit/tests/test_magunit.pyo
${PYSITELIB}/asdf_astropy/converters/unit/tests/test_quantity.py
${PYSITELIB}/asdf_astropy/converters/unit/tests/test_quantity.pyc
${PYSITELIB}/asdf_astropy/converters/unit/tests/test_quantity.pyo
@@ -199,14 +204,32 @@ ${PYSITELIB}/asdf_astropy/resources/__init__.py
${PYSITELIB}/asdf_astropy/resources/__init__.pyc
${PYSITELIB}/asdf_astropy/resources/__init__.pyo
${PYSITELIB}/asdf_astropy/resources/manifests/astropy-1.0.0.yaml
+${PYSITELIB}/asdf_astropy/resources/manifests/astropy-1.1.0.yaml
+${PYSITELIB}/asdf_astropy/resources/manifests/astropy-1.2.0.yaml
+${PYSITELIB}/asdf_astropy/resources/manifests/units-1.0.0.yaml
+${PYSITELIB}/asdf_astropy/resources/manifests/units-1.1.0.yaml
${PYSITELIB}/asdf_astropy/resources/schemas/fits/fits-1.0.0.yaml
+${PYSITELIB}/asdf_astropy/resources/schemas/fits/fits-1.1.0.yaml
+${PYSITELIB}/asdf_astropy/resources/schemas/table/ndarraymixin-1.0.0.yaml
${PYSITELIB}/asdf_astropy/resources/schemas/table/table-1.0.0.yaml
+${PYSITELIB}/asdf_astropy/resources/schemas/table/table-1.1.0.yaml
+${PYSITELIB}/asdf_astropy/resources/schemas/table/table-1.2.0.yaml
${PYSITELIB}/asdf_astropy/resources/schemas/time/timedelta-1.0.0.yaml
+${PYSITELIB}/asdf_astropy/resources/schemas/time/timedelta-1.1.0.yaml
${PYSITELIB}/asdf_astropy/resources/schemas/transform/units_mapping-1.0.0.yaml
+${PYSITELIB}/asdf_astropy/resources/schemas/transform/units_mapping-1.1.0.yaml
${PYSITELIB}/asdf_astropy/resources/schemas/units/equivalency-1.0.0.yaml
+${PYSITELIB}/asdf_astropy/resources/schemas/units/equivalency-1.1.0.yaml
+${PYSITELIB}/asdf_astropy/resources/schemas/units/magunit-1.0.0.yaml
${PYSITELIB}/asdf_astropy/testing/__init__.py
${PYSITELIB}/asdf_astropy/testing/__init__.pyc
${PYSITELIB}/asdf_astropy/testing/__init__.pyo
${PYSITELIB}/asdf_astropy/testing/helpers.py
${PYSITELIB}/asdf_astropy/testing/helpers.pyc
${PYSITELIB}/asdf_astropy/testing/helpers.pyo
+${PYSITELIB}/asdf_astropy/tests/__init__.py
+${PYSITELIB}/asdf_astropy/tests/__init__.pyc
+${PYSITELIB}/asdf_astropy/tests/__init__.pyo
+${PYSITELIB}/asdf_astropy/tests/test_integration.py
+${PYSITELIB}/asdf_astropy/tests/test_integration.pyc
+${PYSITELIB}/asdf_astropy/tests/test_integration.pyo
diff --git a/py-asdf_astropy/distinfo b/py-asdf_astropy/distinfo
index 446bed362f..9cee7fec31 100644
--- a/py-asdf_astropy/distinfo
+++ b/py-asdf_astropy/distinfo
@@ -1,5 +1,5 @@
$NetBSD$
-BLAKE2s (asdf_astropy-0.2.1.tar.gz) = b48bfcfc93efcdbcae7830bf3c6597d9c3b47042e406e30b7771c93d21caafae
-SHA512 (asdf_astropy-0.2.1.tar.gz) = aa6499368340aadc2c16595cdd86cbca0463b55841be50000e9832b8d89a4245310d3ffbae5a0fa503b0682439d206367a1a1f0e4415f8d0b74be98a1459da57
-Size (asdf_astropy-0.2.1.tar.gz) = 58838 bytes
+BLAKE2s (asdf-astropy-0.6.1.tar.gz) = a0418b0fba04f90aa52db50dd89df716341d226b336171b269dac08f11678e33
+SHA512 (asdf-astropy-0.6.1.tar.gz) = 362e3ed7de63a65740d27cafeb55a75625f7c898a7a243bc79393351f7fc2761bf378133dc562f40f1c3e53974180bbef00979f051607d180edba02d7304615e
+Size (asdf-astropy-0.6.1.tar.gz) = 72811 bytes
Home |
Main Index |
Thread Index |
Old Index