pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/math/py-asdf



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun Mar 17 09:57:09 UTC 2024

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

Log Message:
py-asdf: updated to 3.1.0

3.1.0 (2024-02-27)

The ASDF Standard is at v1.6.0

- Cleanup ``asdf.util`` including deprecating: ``human_list``
  ``resolve_name`` ``minversion`` and ``iter_subclasses``

- Deprecate validation on ``AsdfFile.tree`` assignment. Please
  use ``AsdfFile.validate`` to validate the tree

- Deprecate validation during ``AsdfFile.resolve_references``. Please
  use ``AsdfFile.validate`` to validate the tree

- Deprecate ``asdf.asdf`` and ``AsdfFile.resolve_and_inline``

- Deprecate automatic calling of ``AsdfFile.find_references`` during
  ``AsdfFile.__init__`` and ``asdf.open``

- Allow views of memmapped arrays to keep the backing mmap
  open to avoid segfaults

- Introduce ``memmap`` argument to ``asdf.open`` that
  overrides ``copy_arrays`` with documentation that describes
  that the default for ``memmap`` when ``copy_arrays``
  is removed in an upcoming asdf release will be ``False`` and
  asdf will no longer by-default memory map arrays.

- Introduce ``asdf.util.load_yaml`` to load just the YAML contents
  of an ASDF file (with the option ``tagged`` to load the contents
  as a tree of ``asdf.tagged.Tagged`` instances to preserve tags)

- Require pytest 7+ and update asdf pytest plugin to be compatible
  with the current development version of pytest (8.1)

- Eliminate the use of the legacy ``tmpdir`` fixture in favor of
  the new ``tmp_path`` fixture for temporary directory creation.

- Remove conversion of warnings to errors in asdf pytest plugin. This
  prevented other warning filters (like those provided with ``-W``)
  from working. If you want these warnings to produce errors you can
  now add your own warning filter

- Only show ``str`` representation during ``info`` and ``search``
  if it contains a single line (and does not fail)


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/math/py-asdf/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/math/py-asdf/PLIST
cvs rdiff -u -r1.9 -r1.10 pkgsrc/math/py-asdf/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-asdf/Makefile
diff -u pkgsrc/math/py-asdf/Makefile:1.16 pkgsrc/math/py-asdf/Makefile:1.17
--- pkgsrc/math/py-asdf/Makefile:1.16   Fri Nov 10 18:54:09 2023
+++ pkgsrc/math/py-asdf/Makefile        Sun Mar 17 09:57:09 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2023/11/10 18:54:09 adam Exp $
+# $NetBSD: Makefile,v 1.17 2024/03/17 09:57:09 adam Exp $
 
-DISTNAME=      asdf-3.0.1
+DISTNAME=      asdf-3.1.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=a/asdf/}

Index: pkgsrc/math/py-asdf/PLIST
diff -u pkgsrc/math/py-asdf/PLIST:1.7 pkgsrc/math/py-asdf/PLIST:1.8
--- pkgsrc/math/py-asdf/PLIST:1.7       Fri Nov 10 18:54:09 2023
+++ pkgsrc/math/py-asdf/PLIST   Sun Mar 17 09:57:09 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2023/11/10 18:54:09 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2024/03/17 09:57:09 adam Exp $
 bin/asdftool-${PYVERSSUFFIX}
 ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
@@ -9,6 +9,9 @@ ${PYSITELIB}/${WHEEL_INFODIR}/top_level.
 ${PYSITELIB}/asdf/__init__.py
 ${PYSITELIB}/asdf/__init__.pyc
 ${PYSITELIB}/asdf/__init__.pyo
+${PYSITELIB}/asdf/_asdf.py
+${PYSITELIB}/asdf/_asdf.pyc
+${PYSITELIB}/asdf/_asdf.pyo
 ${PYSITELIB}/asdf/_block/__init__.py
 ${PYSITELIB}/asdf/_block/__init__.pyc
 ${PYSITELIB}/asdf/_block/__init__.pyo
@@ -42,12 +45,66 @@ ${PYSITELIB}/asdf/_block/store.pyo
 ${PYSITELIB}/asdf/_block/writer.py
 ${PYSITELIB}/asdf/_block/writer.pyc
 ${PYSITELIB}/asdf/_block/writer.pyo
+${PYSITELIB}/asdf/_compression.py
+${PYSITELIB}/asdf/_compression.pyc
+${PYSITELIB}/asdf/_compression.pyo
 ${PYSITELIB}/asdf/_convenience.py
 ${PYSITELIB}/asdf/_convenience.pyc
 ${PYSITELIB}/asdf/_convenience.pyo
+${PYSITELIB}/asdf/_core/__init__.py
+${PYSITELIB}/asdf/_core/__init__.pyc
+${PYSITELIB}/asdf/_core/__init__.pyo
+${PYSITELIB}/asdf/_core/_converters/__init__.py
+${PYSITELIB}/asdf/_core/_converters/__init__.pyc
+${PYSITELIB}/asdf/_core/_converters/__init__.pyo
+${PYSITELIB}/asdf/_core/_converters/complex.py
+${PYSITELIB}/asdf/_core/_converters/complex.pyc
+${PYSITELIB}/asdf/_core/_converters/complex.pyo
+${PYSITELIB}/asdf/_core/_converters/constant.py
+${PYSITELIB}/asdf/_core/_converters/constant.pyc
+${PYSITELIB}/asdf/_core/_converters/constant.pyo
+${PYSITELIB}/asdf/_core/_converters/external_reference.py
+${PYSITELIB}/asdf/_core/_converters/external_reference.pyc
+${PYSITELIB}/asdf/_core/_converters/external_reference.pyo
+${PYSITELIB}/asdf/_core/_converters/integer.py
+${PYSITELIB}/asdf/_core/_converters/integer.pyc
+${PYSITELIB}/asdf/_core/_converters/integer.pyo
+${PYSITELIB}/asdf/_core/_converters/ndarray.py
+${PYSITELIB}/asdf/_core/_converters/ndarray.pyc
+${PYSITELIB}/asdf/_core/_converters/ndarray.pyo
+${PYSITELIB}/asdf/_core/_converters/reference.py
+${PYSITELIB}/asdf/_core/_converters/reference.pyc
+${PYSITELIB}/asdf/_core/_converters/reference.pyo
+${PYSITELIB}/asdf/_core/_converters/tree.py
+${PYSITELIB}/asdf/_core/_converters/tree.pyc
+${PYSITELIB}/asdf/_core/_converters/tree.pyo
+${PYSITELIB}/asdf/_core/_extensions.py
+${PYSITELIB}/asdf/_core/_extensions.pyc
+${PYSITELIB}/asdf/_core/_extensions.pyo
+${PYSITELIB}/asdf/_core/_integration.py
+${PYSITELIB}/asdf/_core/_integration.pyc
+${PYSITELIB}/asdf/_core/_integration.pyo
+${PYSITELIB}/asdf/_core/_validators/__init__.py
+${PYSITELIB}/asdf/_core/_validators/__init__.pyc
+${PYSITELIB}/asdf/_core/_validators/__init__.pyo
+${PYSITELIB}/asdf/_core/_validators/ndarray.py
+${PYSITELIB}/asdf/_core/_validators/ndarray.pyc
+${PYSITELIB}/asdf/_core/_validators/ndarray.pyo
 ${PYSITELIB}/asdf/_display.py
 ${PYSITELIB}/asdf/_display.pyc
 ${PYSITELIB}/asdf/_display.pyo
+${PYSITELIB}/asdf/_entry_points.py
+${PYSITELIB}/asdf/_entry_points.pyc
+${PYSITELIB}/asdf/_entry_points.pyo
+${PYSITELIB}/asdf/_extern/RangeHTTPServer.py
+${PYSITELIB}/asdf/_extern/RangeHTTPServer.pyc
+${PYSITELIB}/asdf/_extern/RangeHTTPServer.pyo
+${PYSITELIB}/asdf/_extern/__init__.py
+${PYSITELIB}/asdf/_extern/__init__.pyc
+${PYSITELIB}/asdf/_extern/__init__.pyo
+${PYSITELIB}/asdf/_extern/atomicfile.py
+${PYSITELIB}/asdf/_extern/atomicfile.pyc
+${PYSITELIB}/asdf/_extern/atomicfile.pyo
 ${PYSITELIB}/asdf/_helpers.py
 ${PYSITELIB}/asdf/_helpers.pyc
 ${PYSITELIB}/asdf/_helpers.pyo
@@ -755,6 +812,9 @@ ${PYSITELIB}/asdf/_tests/_helpers.pyo
 ${PYSITELIB}/asdf/_tests/_regtests/test_1013.py
 ${PYSITELIB}/asdf/_tests/_regtests/test_1013.pyc
 ${PYSITELIB}/asdf/_tests/_regtests/test_1013.pyo
+${PYSITELIB}/asdf/_tests/_regtests/test_1334.py
+${PYSITELIB}/asdf/_tests/_regtests/test_1334.pyc
+${PYSITELIB}/asdf/_tests/_regtests/test_1334.pyo
 ${PYSITELIB}/asdf/_tests/_regtests/test_1505.py
 ${PYSITELIB}/asdf/_tests/_regtests/test_1505.pyc
 ${PYSITELIB}/asdf/_tests/_regtests/test_1505.pyo
@@ -1019,9 +1079,6 @@ ${PYSITELIB}/asdf/commands/tags.pyo
 ${PYSITELIB}/asdf/commands/to_yaml.py
 ${PYSITELIB}/asdf/commands/to_yaml.pyc
 ${PYSITELIB}/asdf/commands/to_yaml.pyo
-${PYSITELIB}/asdf/compression.py
-${PYSITELIB}/asdf/compression.pyc
-${PYSITELIB}/asdf/compression.pyo
 ${PYSITELIB}/asdf/config.py
 ${PYSITELIB}/asdf/config.pyc
 ${PYSITELIB}/asdf/config.pyo
@@ -1031,48 +1088,6 @@ ${PYSITELIB}/asdf/conftest.pyo
 ${PYSITELIB}/asdf/constants.py
 ${PYSITELIB}/asdf/constants.pyc
 ${PYSITELIB}/asdf/constants.pyo
-${PYSITELIB}/asdf/core/__init__.py
-${PYSITELIB}/asdf/core/__init__.pyc
-${PYSITELIB}/asdf/core/__init__.pyo
-${PYSITELIB}/asdf/core/_converters/__init__.py
-${PYSITELIB}/asdf/core/_converters/__init__.pyc
-${PYSITELIB}/asdf/core/_converters/__init__.pyo
-${PYSITELIB}/asdf/core/_converters/complex.py
-${PYSITELIB}/asdf/core/_converters/complex.pyc
-${PYSITELIB}/asdf/core/_converters/complex.pyo
-${PYSITELIB}/asdf/core/_converters/constant.py
-${PYSITELIB}/asdf/core/_converters/constant.pyc
-${PYSITELIB}/asdf/core/_converters/constant.pyo
-${PYSITELIB}/asdf/core/_converters/external_reference.py
-${PYSITELIB}/asdf/core/_converters/external_reference.pyc
-${PYSITELIB}/asdf/core/_converters/external_reference.pyo
-${PYSITELIB}/asdf/core/_converters/integer.py
-${PYSITELIB}/asdf/core/_converters/integer.pyc
-${PYSITELIB}/asdf/core/_converters/integer.pyo
-${PYSITELIB}/asdf/core/_converters/ndarray.py
-${PYSITELIB}/asdf/core/_converters/ndarray.pyc
-${PYSITELIB}/asdf/core/_converters/ndarray.pyo
-${PYSITELIB}/asdf/core/_converters/reference.py
-${PYSITELIB}/asdf/core/_converters/reference.pyc
-${PYSITELIB}/asdf/core/_converters/reference.pyo
-${PYSITELIB}/asdf/core/_converters/tree.py
-${PYSITELIB}/asdf/core/_converters/tree.pyc
-${PYSITELIB}/asdf/core/_converters/tree.pyo
-${PYSITELIB}/asdf/core/_extensions.py
-${PYSITELIB}/asdf/core/_extensions.pyc
-${PYSITELIB}/asdf/core/_extensions.pyo
-${PYSITELIB}/asdf/core/_integration.py
-${PYSITELIB}/asdf/core/_integration.pyc
-${PYSITELIB}/asdf/core/_integration.pyo
-${PYSITELIB}/asdf/core/_validators/__init__.py
-${PYSITELIB}/asdf/core/_validators/__init__.pyc
-${PYSITELIB}/asdf/core/_validators/__init__.pyo
-${PYSITELIB}/asdf/core/_validators/ndarray.py
-${PYSITELIB}/asdf/core/_validators/ndarray.pyc
-${PYSITELIB}/asdf/core/_validators/ndarray.pyo
-${PYSITELIB}/asdf/entry_points.py
-${PYSITELIB}/asdf/entry_points.pyc
-${PYSITELIB}/asdf/entry_points.pyo
 ${PYSITELIB}/asdf/exceptions.py
 ${PYSITELIB}/asdf/exceptions.pyc
 ${PYSITELIB}/asdf/exceptions.pyo
@@ -1103,15 +1118,6 @@ ${PYSITELIB}/asdf/extension/_tag.pyo
 ${PYSITELIB}/asdf/extension/_validator.py
 ${PYSITELIB}/asdf/extension/_validator.pyc
 ${PYSITELIB}/asdf/extension/_validator.pyo
-${PYSITELIB}/asdf/extern/RangeHTTPServer.py
-${PYSITELIB}/asdf/extern/RangeHTTPServer.pyc
-${PYSITELIB}/asdf/extern/RangeHTTPServer.pyo
-${PYSITELIB}/asdf/extern/__init__.py
-${PYSITELIB}/asdf/extern/__init__.pyc
-${PYSITELIB}/asdf/extern/__init__.pyo
-${PYSITELIB}/asdf/extern/atomicfile.py
-${PYSITELIB}/asdf/extern/atomicfile.pyc
-${PYSITELIB}/asdf/extern/atomicfile.pyo
 ${PYSITELIB}/asdf/generic_io.py
 ${PYSITELIB}/asdf/generic_io.pyc
 ${PYSITELIB}/asdf/generic_io.pyo

Index: pkgsrc/math/py-asdf/distinfo
diff -u pkgsrc/math/py-asdf/distinfo:1.9 pkgsrc/math/py-asdf/distinfo:1.10
--- pkgsrc/math/py-asdf/distinfo:1.9    Fri Nov 10 18:54:09 2023
+++ pkgsrc/math/py-asdf/distinfo        Sun Mar 17 09:57:09 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.9 2023/11/10 18:54:09 adam Exp $
+$NetBSD: distinfo,v 1.10 2024/03/17 09:57:09 adam Exp $
 
-BLAKE2s (asdf-3.0.1.tar.gz) = b967bc8f0fc917eac1cb9776e6888803f08ce7be3320cf6818da13cead82fa12
-SHA512 (asdf-3.0.1.tar.gz) = 28b2726370ac47f741bba648bfae46da3f6ca380567dd40c5e75d4e5e06796d55a060e1bb817a656d71f949ec100073d86631c49646726a2e604dec4fa67fcd9
-Size (asdf-3.0.1.tar.gz) = 789472 bytes
+BLAKE2s (asdf-3.1.0.tar.gz) = afbc73e3d20277e3b175d78b8d022c48035a804622600c7f4c288405bb96c145
+SHA512 (asdf-3.1.0.tar.gz) = 1deecfa93de8b7b3b9cbdfb1a41006adb7d12fb474855a30b891329cf8a26201ecb68ac72f706e5e4c88883b962cdf4512244176bf94472e11614cc5ec2c4d5b
+Size (asdf-3.1.0.tar.gz) = 795517 bytes



Home | Main Index | Thread Index | Old Index