Fri Nov 10 18:54:09 2023 UTC ()
py-asdf: updated to 3.0.1

3.0.1 (2023-10-30)
------------------

The ASDF Standard is at v1.6.0

- Fix bug in ``asdftool diff`` for arrays within a list

3.0.0 (2023-10-16)
------------------

The ASDF Standard is at v1.6.0

- Drop support for ASDF-in-FITS.
- Add ``all_array_storage``, ``all_array_compression`` and
  ``all_array_compression_kwargs`` to ``asdf.config.AsdfConfig``
- Move built-in tags to converters (except ndarray and integer).
- Add block storage support to Converter
- Remove deprecated legacy extension API
- Fix issue opening files that don't support ``fileno``
- Allow Converters to defer conversion to other Converters
  by returning ``None`` in ``Converter.select_tag``
- Remove deprecated tests.helpers
- Remove deprecated load_custom_schema
- Remove deprecated TagDefinition.schema_uri
- Removed deprecated AsdfFile.open and deprecated asdf.open
  AsdfFile.write_to and AsdfFile.update kwargs
- Fix ``AsdfFile.info`` loading all array data
- Blank out AsdfFile.tree on close
- Move ndarray to a converter, add ``convert_unknown_ndarray_subclasses``
  to ``asdf.config.AsdfConfig``, move ``asdf.Stream`` to
  ``asdf.tags.core.Stream``, update block storage support for
  Converter and update internal block API
- Remove deprecated resolve_local_refs argument to load_schema
- Move IntegerType to converter and drop cache of converted values.
- Remove legacy extension API
- Fix bug that left out the name of the arrays that differed
  for ``asdftool diff`` comparisons


(adam)
diff -r1.15 -r1.16 pkgsrc/math/py-asdf/Makefile
diff -r1.6 -r1.7 pkgsrc/math/py-asdf/PLIST
diff -r1.8 -r1.9 pkgsrc/math/py-asdf/distinfo

cvs diff -r1.15 -r1.16 pkgsrc/math/py-asdf/Makefile (expand / switch to unified diff)

--- pkgsrc/math/py-asdf/Makefile 2023/10/28 19:57:11 1.15
+++ pkgsrc/math/py-asdf/Makefile 2023/11/10 18:54:09 1.16
@@ -1,40 +1,43 @@ @@ -1,40 +1,43 @@
1# $NetBSD: Makefile,v 1.15 2023/10/28 19:57:11 wiz Exp $ 1# $NetBSD: Makefile,v 1.16 2023/11/10 18:54:09 adam Exp $
2 2
3DISTNAME= asdf-2.15.2 3DISTNAME= asdf-3.0.1
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5PKGREVISION= 1 
6CATEGORIES= math python 5CATEGORIES= math python
7MASTER_SITES= ${MASTER_SITE_PYPI:=a/asdf/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=a/asdf/}
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= https://github.com/asdf-format/asdf 9HOMEPAGE= https://github.com/asdf-format/asdf
11COMMENT= Advanced Scientific Data Format 10COMMENT= Advanced Scientific Data Format
12LICENSE= modified-bsd 11LICENSE= modified-bsd
13 12
14TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=60:../../devel/py-setuptools 13TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=60:../../devel/py-setuptools
15TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=3.4:../../devel/py-setuptools_scm 14TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=3.4:../../devel/py-setuptools_scm
16TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel 15TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
17DEPENDS+= ${PYPKGPREFIX}-asdf-standard>=1.0.1:../../math/py-asdf-standard 16DEPENDS+= ${PYPKGPREFIX}-asdf-standard>=1.0.1:../../math/py-asdf-standard
18DEPENDS+= ${PYPKGPREFIX}-asdf-transform-schemas>=0.3:../../math/py-asdf-transform-schemas 17DEPENDS+= ${PYPKGPREFIX}-asdf-transform-schemas>=0.3:../../math/py-asdf-transform-schemas
19DEPENDS+= ${PYPKGPREFIX}-asdf-unit-schemas>=0.1:../../math/py-asdf-unit-schemas 18DEPENDS+= ${PYPKGPREFIX}-asdf-unit-schemas>=0.1:../../math/py-asdf-unit-schemas
20DEPENDS+= ${PYPKGPREFIX}-attrs>=20.1.0":../../devel/py-attrs 19DEPENDS+= ${PYPKGPREFIX}-attrs>=20.1.0":../../devel/py-attrs
21DEPENDS+= ${PYPKGPREFIX}-importlib-metadata>=4.11.4:../../devel/py-importlib-metadata 20DEPENDS+= ${PYPKGPREFIX}-importlib-metadata>=4.11.4:../../devel/py-importlib-metadata
22DEPENDS+= ${PYPKGPREFIX}-jmespath>=0.6.2:../../textproc/py-jmespath 21DEPENDS+= ${PYPKGPREFIX}-jmespath>=0.6.2:../../textproc/py-jmespath
23DEPENDS+= ${PYPKGPREFIX}-jsonschema>=4.8:../../textproc/py-jsonschema 
24DEPENDS+= ${PYPKGPREFIX}-numpy>=1.22:../../math/py-numpy 22DEPENDS+= ${PYPKGPREFIX}-numpy>=1.22:../../math/py-numpy
25DEPENDS+= ${PYPKGPREFIX}-packaging>=19:../../devel/py-packaging 23DEPENDS+= ${PYPKGPREFIX}-packaging>=19:../../devel/py-packaging
26DEPENDS+= ${PYPKGPREFIX}-semantic_version>=2.8:../../devel/py-semantic_version 24DEPENDS+= ${PYPKGPREFIX}-semantic_version>=2.8:../../devel/py-semantic_version
27DEPENDS+= ${PYPKGPREFIX}-yaml>=5.4.1:../../textproc/py-yaml 25DEPENDS+= ${PYPKGPREFIX}-yaml>=5.4.1:../../textproc/py-yaml
 26TEST_DEPENDS+= ${PYPKGPREFIX}-fsspec>=2022.8.2:../../sysutils/py-fsspec
 27TEST_DEPENDS+= ${PYPKGPREFIX}-lz4>=0.10:../../archivers/py-lz4
 28TEST_DEPENDS+= ${PYPKGPREFIX}-psutil-[0-9]*:../../sysutils/py-psutil
 29TEST_DEPENDS+= ${PYPKGPREFIX}-test-doctestplus-[0-9]*:../../devel/py-test-doctestplus
 30TEST_DEPENDS+= ${PYPKGPREFIX}-test-remotedata-[0-9]*:../../net/py-test-remotedata
28 31
29USE_LANGUAGES= # none 32USE_LANGUAGES= # none
30 33
31PYTHON_VERSIONS_INCOMPATIBLE= 27 38 34PYTHON_VERSIONS_INCOMPATIBLE= 27 38
32 35
33REPLACE_PYTHON+= asdf/_jsonschema/json/bin/jsonschema_suite 36REPLACE_PYTHON+= asdf/_jsonschema/json/bin/jsonschema_suite
34REPLACE_PYTHON+= asdf/extern/RangeHTTPServer.py 37REPLACE_PYTHON+= asdf/extern/RangeHTTPServer.py
35 38
36post-install: 39post-install:
37 cd ${DESTDIR}${PREFIX}/bin && \ 40 cd ${DESTDIR}${PREFIX}/bin && \
38 ${MV} asdftool asdftool-${PYVERSSUFFIX} || ${TRUE} 41 ${MV} asdftool asdftool-${PYVERSSUFFIX} || ${TRUE}
39 42
40.include "../../lang/python/application.mk" 43.include "../../lang/python/application.mk"

cvs diff -r1.6 -r1.7 pkgsrc/math/py-asdf/PLIST (expand / switch to unified diff)

--- pkgsrc/math/py-asdf/PLIST 2023/10/28 19:57:11 1.6
+++ pkgsrc/math/py-asdf/PLIST 2023/11/10 18:54:09 1.7
@@ -1,24 +1,57 @@ @@ -1,24 +1,57 @@
1@comment $NetBSD: PLIST,v 1.6 2023/10/28 19:57:11 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.7 2023/11/10 18:54:09 adam Exp $
2bin/asdftool-${PYVERSSUFFIX} 2bin/asdftool-${PYVERSSUFFIX}
3${PYSITELIB}/${WHEEL_INFODIR}/LICENSE 3${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
4${PYSITELIB}/${WHEEL_INFODIR}/METADATA 4${PYSITELIB}/${WHEEL_INFODIR}/METADATA
5${PYSITELIB}/${WHEEL_INFODIR}/RECORD 5${PYSITELIB}/${WHEEL_INFODIR}/RECORD
6${PYSITELIB}/${WHEEL_INFODIR}/WHEEL 6${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
7${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt 7${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
8${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt 8${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
9${PYSITELIB}/asdf/__init__.py 9${PYSITELIB}/asdf/__init__.py
10${PYSITELIB}/asdf/__init__.pyc 10${PYSITELIB}/asdf/__init__.pyc
11${PYSITELIB}/asdf/__init__.pyo 11${PYSITELIB}/asdf/__init__.pyo
 12${PYSITELIB}/asdf/_block/__init__.py
 13${PYSITELIB}/asdf/_block/__init__.pyc
 14${PYSITELIB}/asdf/_block/__init__.pyo
 15${PYSITELIB}/asdf/_block/callback.py
 16${PYSITELIB}/asdf/_block/callback.pyc
 17${PYSITELIB}/asdf/_block/callback.pyo
 18${PYSITELIB}/asdf/_block/exceptions.py
 19${PYSITELIB}/asdf/_block/exceptions.pyc
 20${PYSITELIB}/asdf/_block/exceptions.pyo
 21${PYSITELIB}/asdf/_block/external.py
 22${PYSITELIB}/asdf/_block/external.pyc
 23${PYSITELIB}/asdf/_block/external.pyo
 24${PYSITELIB}/asdf/_block/io.py
 25${PYSITELIB}/asdf/_block/io.pyc
 26${PYSITELIB}/asdf/_block/io.pyo
 27${PYSITELIB}/asdf/_block/key.py
 28${PYSITELIB}/asdf/_block/key.pyc
 29${PYSITELIB}/asdf/_block/key.pyo
 30${PYSITELIB}/asdf/_block/manager.py
 31${PYSITELIB}/asdf/_block/manager.pyc
 32${PYSITELIB}/asdf/_block/manager.pyo
 33${PYSITELIB}/asdf/_block/options.py
 34${PYSITELIB}/asdf/_block/options.pyc
 35${PYSITELIB}/asdf/_block/options.pyo
 36${PYSITELIB}/asdf/_block/reader.py
 37${PYSITELIB}/asdf/_block/reader.pyc
 38${PYSITELIB}/asdf/_block/reader.pyo
 39${PYSITELIB}/asdf/_block/store.py
 40${PYSITELIB}/asdf/_block/store.pyc
 41${PYSITELIB}/asdf/_block/store.pyo
 42${PYSITELIB}/asdf/_block/writer.py
 43${PYSITELIB}/asdf/_block/writer.pyc
 44${PYSITELIB}/asdf/_block/writer.pyo
12${PYSITELIB}/asdf/_convenience.py 45${PYSITELIB}/asdf/_convenience.py
13${PYSITELIB}/asdf/_convenience.pyc 46${PYSITELIB}/asdf/_convenience.pyc
14${PYSITELIB}/asdf/_convenience.pyo 47${PYSITELIB}/asdf/_convenience.pyo
15${PYSITELIB}/asdf/_display.py 48${PYSITELIB}/asdf/_display.py
16${PYSITELIB}/asdf/_display.pyc 49${PYSITELIB}/asdf/_display.pyc
17${PYSITELIB}/asdf/_display.pyo 50${PYSITELIB}/asdf/_display.pyo
18${PYSITELIB}/asdf/_helpers.py 51${PYSITELIB}/asdf/_helpers.py
19${PYSITELIB}/asdf/_helpers.pyc 52${PYSITELIB}/asdf/_helpers.pyc
20${PYSITELIB}/asdf/_helpers.pyo 53${PYSITELIB}/asdf/_helpers.pyo
21${PYSITELIB}/asdf/_jsonschema/COPYING 54${PYSITELIB}/asdf/_jsonschema/COPYING
22${PYSITELIB}/asdf/_jsonschema/README.md 55${PYSITELIB}/asdf/_jsonschema/README.md
23${PYSITELIB}/asdf/_jsonschema/__init__.py 56${PYSITELIB}/asdf/_jsonschema/__init__.py
24${PYSITELIB}/asdf/_jsonschema/__init__.pyc 57${PYSITELIB}/asdf/_jsonschema/__init__.pyc
@@ -673,311 +706,368 @@ ${PYSITELIB}/asdf/_jsonschema/tests/test @@ -673,311 +706,368 @@ ${PYSITELIB}/asdf/_jsonschema/tests/test
673${PYSITELIB}/asdf/_jsonschema/tests/test_types.pyo 706${PYSITELIB}/asdf/_jsonschema/tests/test_types.pyo
674${PYSITELIB}/asdf/_jsonschema/tests/test_utils.py 707${PYSITELIB}/asdf/_jsonschema/tests/test_utils.py
675${PYSITELIB}/asdf/_jsonschema/tests/test_utils.pyc 708${PYSITELIB}/asdf/_jsonschema/tests/test_utils.pyc
676${PYSITELIB}/asdf/_jsonschema/tests/test_utils.pyo 709${PYSITELIB}/asdf/_jsonschema/tests/test_utils.pyo
677${PYSITELIB}/asdf/_jsonschema/tests/test_validators.py 710${PYSITELIB}/asdf/_jsonschema/tests/test_validators.py
678${PYSITELIB}/asdf/_jsonschema/tests/test_validators.pyc 711${PYSITELIB}/asdf/_jsonschema/tests/test_validators.pyc
679${PYSITELIB}/asdf/_jsonschema/tests/test_validators.pyo 712${PYSITELIB}/asdf/_jsonschema/tests/test_validators.pyo
680${PYSITELIB}/asdf/_jsonschema/validators.py 713${PYSITELIB}/asdf/_jsonschema/validators.py
681${PYSITELIB}/asdf/_jsonschema/validators.pyc 714${PYSITELIB}/asdf/_jsonschema/validators.pyc
682${PYSITELIB}/asdf/_jsonschema/validators.pyo 715${PYSITELIB}/asdf/_jsonschema/validators.pyo
683${PYSITELIB}/asdf/_node_info.py 716${PYSITELIB}/asdf/_node_info.py
684${PYSITELIB}/asdf/_node_info.pyc 717${PYSITELIB}/asdf/_node_info.pyc
685${PYSITELIB}/asdf/_node_info.pyo 718${PYSITELIB}/asdf/_node_info.pyo
686${PYSITELIB}/asdf/_resolver.py 
687${PYSITELIB}/asdf/_resolver.pyc 
688${PYSITELIB}/asdf/_resolver.pyo 
689${PYSITELIB}/asdf/_tests/__init__.py 719${PYSITELIB}/asdf/_tests/__init__.py
690${PYSITELIB}/asdf/_tests/__init__.pyc 720${PYSITELIB}/asdf/_tests/__init__.pyc
691${PYSITELIB}/asdf/_tests/__init__.pyo 721${PYSITELIB}/asdf/_tests/__init__.pyo
 722${PYSITELIB}/asdf/_tests/_block/__init__.py
 723${PYSITELIB}/asdf/_tests/_block/__init__.pyc
 724${PYSITELIB}/asdf/_tests/_block/__init__.pyo
 725${PYSITELIB}/asdf/_tests/_block/test_callback.py
 726${PYSITELIB}/asdf/_tests/_block/test_callback.pyc
 727${PYSITELIB}/asdf/_tests/_block/test_callback.pyo
 728${PYSITELIB}/asdf/_tests/_block/test_external.py
 729${PYSITELIB}/asdf/_tests/_block/test_external.pyc
 730${PYSITELIB}/asdf/_tests/_block/test_external.pyo
 731${PYSITELIB}/asdf/_tests/_block/test_io.py
 732${PYSITELIB}/asdf/_tests/_block/test_io.pyc
 733${PYSITELIB}/asdf/_tests/_block/test_io.pyo
 734${PYSITELIB}/asdf/_tests/_block/test_key.py
 735${PYSITELIB}/asdf/_tests/_block/test_key.pyc
 736${PYSITELIB}/asdf/_tests/_block/test_key.pyo
 737${PYSITELIB}/asdf/_tests/_block/test_manager.py
 738${PYSITELIB}/asdf/_tests/_block/test_manager.pyc
 739${PYSITELIB}/asdf/_tests/_block/test_manager.pyo
 740${PYSITELIB}/asdf/_tests/_block/test_options.py
 741${PYSITELIB}/asdf/_tests/_block/test_options.pyc
 742${PYSITELIB}/asdf/_tests/_block/test_options.pyo
 743${PYSITELIB}/asdf/_tests/_block/test_reader.py
 744${PYSITELIB}/asdf/_tests/_block/test_reader.pyc
 745${PYSITELIB}/asdf/_tests/_block/test_reader.pyo
 746${PYSITELIB}/asdf/_tests/_block/test_store.py
 747${PYSITELIB}/asdf/_tests/_block/test_store.pyc
 748${PYSITELIB}/asdf/_tests/_block/test_store.pyo
 749${PYSITELIB}/asdf/_tests/_block/test_writer.py
 750${PYSITELIB}/asdf/_tests/_block/test_writer.pyc
 751${PYSITELIB}/asdf/_tests/_block/test_writer.pyo
692${PYSITELIB}/asdf/_tests/_helpers.py 752${PYSITELIB}/asdf/_tests/_helpers.py
693${PYSITELIB}/asdf/_tests/_helpers.pyc 753${PYSITELIB}/asdf/_tests/_helpers.pyc
694${PYSITELIB}/asdf/_tests/_helpers.pyo 754${PYSITELIB}/asdf/_tests/_helpers.pyo
 755${PYSITELIB}/asdf/_tests/_regtests/test_1013.py
 756${PYSITELIB}/asdf/_tests/_regtests/test_1013.pyc
 757${PYSITELIB}/asdf/_tests/_regtests/test_1013.pyo
 758${PYSITELIB}/asdf/_tests/_regtests/test_1505.py
 759${PYSITELIB}/asdf/_tests/_regtests/test_1505.pyc
 760${PYSITELIB}/asdf/_tests/_regtests/test_1505.pyo
 761${PYSITELIB}/asdf/_tests/_regtests/test_1523.py
 762${PYSITELIB}/asdf/_tests/_regtests/test_1523.pyc
 763${PYSITELIB}/asdf/_tests/_regtests/test_1523.pyo
 764${PYSITELIB}/asdf/_tests/_regtests/test_1525.py
 765${PYSITELIB}/asdf/_tests/_regtests/test_1525.pyc
 766${PYSITELIB}/asdf/_tests/_regtests/test_1525.pyo
 767${PYSITELIB}/asdf/_tests/_regtests/test_1526.py
 768${PYSITELIB}/asdf/_tests/_regtests/test_1526.pyc
 769${PYSITELIB}/asdf/_tests/_regtests/test_1526.pyo
 770${PYSITELIB}/asdf/_tests/_regtests/test_1530.py
 771${PYSITELIB}/asdf/_tests/_regtests/test_1530.pyc
 772${PYSITELIB}/asdf/_tests/_regtests/test_1530.pyo
 773${PYSITELIB}/asdf/_tests/_regtests/test_1538.py
 774${PYSITELIB}/asdf/_tests/_regtests/test_1538.pyc
 775${PYSITELIB}/asdf/_tests/_regtests/test_1538.pyo
 776${PYSITELIB}/asdf/_tests/_regtests/test_1539.py
 777${PYSITELIB}/asdf/_tests/_regtests/test_1539.pyc
 778${PYSITELIB}/asdf/_tests/_regtests/test_1539.pyo
 779${PYSITELIB}/asdf/_tests/_regtests/test_1540.py
 780${PYSITELIB}/asdf/_tests/_regtests/test_1540.pyc
 781${PYSITELIB}/asdf/_tests/_regtests/test_1540.pyo
 782${PYSITELIB}/asdf/_tests/_regtests/test_1541.py
 783${PYSITELIB}/asdf/_tests/_regtests/test_1541.pyc
 784${PYSITELIB}/asdf/_tests/_regtests/test_1541.pyo
 785${PYSITELIB}/asdf/_tests/_regtests/test_1542.py
 786${PYSITELIB}/asdf/_tests/_regtests/test_1542.pyc
 787${PYSITELIB}/asdf/_tests/_regtests/test_1542.pyo
 788${PYSITELIB}/asdf/_tests/_regtests/test_1553.py
 789${PYSITELIB}/asdf/_tests/_regtests/test_1553.pyc
 790${PYSITELIB}/asdf/_tests/_regtests/test_1553.pyo
 791${PYSITELIB}/asdf/_tests/_regtests/test_1558.py
 792${PYSITELIB}/asdf/_tests/_regtests/test_1558.pyc
 793${PYSITELIB}/asdf/_tests/_regtests/test_1558.pyo
695${PYSITELIB}/asdf/_tests/commands/tests/__init__.py 794${PYSITELIB}/asdf/_tests/commands/tests/__init__.py
696${PYSITELIB}/asdf/_tests/commands/tests/__init__.pyc 795${PYSITELIB}/asdf/_tests/commands/tests/__init__.pyc
697${PYSITELIB}/asdf/_tests/commands/tests/__init__.pyo 796${PYSITELIB}/asdf/_tests/commands/tests/__init__.pyo
698${PYSITELIB}/asdf/_tests/commands/tests/data/__init__.py 797${PYSITELIB}/asdf/_tests/commands/tests/data/__init__.py
699${PYSITELIB}/asdf/_tests/commands/tests/data/__init__.pyc 798${PYSITELIB}/asdf/_tests/commands/tests/data/__init__.pyc
700${PYSITELIB}/asdf/_tests/commands/tests/data/__init__.pyo 799${PYSITELIB}/asdf/_tests/commands/tests/data/__init__.pyo
701${PYSITELIB}/asdf/_tests/commands/tests/data/block0.asdf 800${PYSITELIB}/asdf/_tests/commands/tests/data/block0.asdf
702${PYSITELIB}/asdf/_tests/commands/tests/data/block1.asdf 801${PYSITELIB}/asdf/_tests/commands/tests/data/block1.asdf
703${PYSITELIB}/asdf/_tests/commands/tests/data/blocks.diff 802${PYSITELIB}/asdf/_tests/commands/tests/data/blocks.diff
704${PYSITELIB}/asdf/_tests/commands/tests/data/frames.diff 803${PYSITELIB}/asdf/_tests/commands/tests/data/frames.diff
705${PYSITELIB}/asdf/_tests/commands/tests/data/frames0.asdf 804${PYSITELIB}/asdf/_tests/commands/tests/data/frames0.asdf
706${PYSITELIB}/asdf/_tests/commands/tests/data/frames1.asdf 805${PYSITELIB}/asdf/_tests/commands/tests/data/frames1.asdf
707${PYSITELIB}/asdf/_tests/commands/tests/data/frames_ignore_asdf_library.diff 806${PYSITELIB}/asdf/_tests/commands/tests/data/frames_ignore_asdf_library.diff
708${PYSITELIB}/asdf/_tests/commands/tests/data/frames_ignore_both.diff 807${PYSITELIB}/asdf/_tests/commands/tests/data/frames_ignore_both.diff
709${PYSITELIB}/asdf/_tests/commands/tests/data/frames_ignore_reference_frame.diff 808${PYSITELIB}/asdf/_tests/commands/tests/data/frames_ignore_reference_frame.diff
710${PYSITELIB}/asdf/_tests/commands/tests/data/frames_minimal.diff 809${PYSITELIB}/asdf/_tests/commands/tests/data/frames_minimal.diff
 810${PYSITELIB}/asdf/_tests/commands/tests/data/ndarray0.asdf
 811${PYSITELIB}/asdf/_tests/commands/tests/data/ndarray1.asdf
 812${PYSITELIB}/asdf/_tests/commands/tests/data/ndarray_in_list.diff
 813${PYSITELIB}/asdf/_tests/commands/tests/data/ndarray_in_list0.asdf
 814${PYSITELIB}/asdf/_tests/commands/tests/data/ndarray_in_list1.asdf
 815${PYSITELIB}/asdf/_tests/commands/tests/data/ndarrays.diff
711${PYSITELIB}/asdf/_tests/commands/tests/data/simple_inline_array.diff 816${PYSITELIB}/asdf/_tests/commands/tests/data/simple_inline_array.diff
712${PYSITELIB}/asdf/_tests/commands/tests/data/simple_inline_array0.asdf 817${PYSITELIB}/asdf/_tests/commands/tests/data/simple_inline_array0.asdf
713${PYSITELIB}/asdf/_tests/commands/tests/data/simple_inline_array1.asdf 818${PYSITELIB}/asdf/_tests/commands/tests/data/simple_inline_array1.asdf
714${PYSITELIB}/asdf/_tests/commands/tests/test_defragment.py 819${PYSITELIB}/asdf/_tests/commands/tests/test_defragment.py
715${PYSITELIB}/asdf/_tests/commands/tests/test_defragment.pyc 820${PYSITELIB}/asdf/_tests/commands/tests/test_defragment.pyc
716${PYSITELIB}/asdf/_tests/commands/tests/test_defragment.pyo 821${PYSITELIB}/asdf/_tests/commands/tests/test_defragment.pyo
717${PYSITELIB}/asdf/_tests/commands/tests/test_diff.py 822${PYSITELIB}/asdf/_tests/commands/tests/test_diff.py
718${PYSITELIB}/asdf/_tests/commands/tests/test_diff.pyc 823${PYSITELIB}/asdf/_tests/commands/tests/test_diff.pyc
719${PYSITELIB}/asdf/_tests/commands/tests/test_diff.pyo 824${PYSITELIB}/asdf/_tests/commands/tests/test_diff.pyo
720${PYSITELIB}/asdf/_tests/commands/tests/test_edit.py 825${PYSITELIB}/asdf/_tests/commands/tests/test_edit.py
721${PYSITELIB}/asdf/_tests/commands/tests/test_edit.pyc 826${PYSITELIB}/asdf/_tests/commands/tests/test_edit.pyc
722${PYSITELIB}/asdf/_tests/commands/tests/test_edit.pyo 827${PYSITELIB}/asdf/_tests/commands/tests/test_edit.pyo
723${PYSITELIB}/asdf/_tests/commands/tests/test_exploded.py 828${PYSITELIB}/asdf/_tests/commands/tests/test_exploded.py
724${PYSITELIB}/asdf/_tests/commands/tests/test_exploded.pyc 829${PYSITELIB}/asdf/_tests/commands/tests/test_exploded.pyc
725${PYSITELIB}/asdf/_tests/commands/tests/test_exploded.pyo 830${PYSITELIB}/asdf/_tests/commands/tests/test_exploded.pyo
726${PYSITELIB}/asdf/_tests/commands/tests/test_extension.py 831${PYSITELIB}/asdf/_tests/commands/tests/test_extension.py
727${PYSITELIB}/asdf/_tests/commands/tests/test_extension.pyc 832${PYSITELIB}/asdf/_tests/commands/tests/test_extension.pyc
728${PYSITELIB}/asdf/_tests/commands/tests/test_extension.pyo 833${PYSITELIB}/asdf/_tests/commands/tests/test_extension.pyo
729${PYSITELIB}/asdf/_tests/commands/tests/test_extract.py 
730${PYSITELIB}/asdf/_tests/commands/tests/test_extract.pyc 
731${PYSITELIB}/asdf/_tests/commands/tests/test_extract.pyo 
732${PYSITELIB}/asdf/_tests/commands/tests/test_info.py 834${PYSITELIB}/asdf/_tests/commands/tests/test_info.py
733${PYSITELIB}/asdf/_tests/commands/tests/test_info.pyc 835${PYSITELIB}/asdf/_tests/commands/tests/test_info.pyc
734${PYSITELIB}/asdf/_tests/commands/tests/test_info.pyo 836${PYSITELIB}/asdf/_tests/commands/tests/test_info.pyo
735${PYSITELIB}/asdf/_tests/commands/tests/test_main.py 837${PYSITELIB}/asdf/_tests/commands/tests/test_main.py
736${PYSITELIB}/asdf/_tests/commands/tests/test_main.pyc 838${PYSITELIB}/asdf/_tests/commands/tests/test_main.pyc
737${PYSITELIB}/asdf/_tests/commands/tests/test_main.pyo 839${PYSITELIB}/asdf/_tests/commands/tests/test_main.pyo
738${PYSITELIB}/asdf/_tests/commands/tests/test_remove_hdu.py 
739${PYSITELIB}/asdf/_tests/commands/tests/test_remove_hdu.pyc 
740${PYSITELIB}/asdf/_tests/commands/tests/test_remove_hdu.pyo 
741${PYSITELIB}/asdf/_tests/commands/tests/test_tags.py 840${PYSITELIB}/asdf/_tests/commands/tests/test_tags.py
742${PYSITELIB}/asdf/_tests/commands/tests/test_tags.pyc 841${PYSITELIB}/asdf/_tests/commands/tests/test_tags.pyc
743${PYSITELIB}/asdf/_tests/commands/tests/test_tags.pyo 842${PYSITELIB}/asdf/_tests/commands/tests/test_tags.pyo
744${PYSITELIB}/asdf/_tests/commands/tests/test_to_yaml.py 843${PYSITELIB}/asdf/_tests/commands/tests/test_to_yaml.py
745${PYSITELIB}/asdf/_tests/commands/tests/test_to_yaml.pyc 844${PYSITELIB}/asdf/_tests/commands/tests/test_to_yaml.pyc
746${PYSITELIB}/asdf/_tests/commands/tests/test_to_yaml.pyo 845${PYSITELIB}/asdf/_tests/commands/tests/test_to_yaml.pyo
747${PYSITELIB}/asdf/_tests/conftest.py 846${PYSITELIB}/asdf/_tests/conftest.py
748${PYSITELIB}/asdf/_tests/conftest.pyc 847${PYSITELIB}/asdf/_tests/conftest.pyc
749${PYSITELIB}/asdf/_tests/conftest.pyo 848${PYSITELIB}/asdf/_tests/conftest.pyo
750${PYSITELIB}/asdf/_tests/core/__init__.py 849${PYSITELIB}/asdf/_tests/core/__init__.py
751${PYSITELIB}/asdf/_tests/core/__init__.pyc 850${PYSITELIB}/asdf/_tests/core/__init__.pyc
752${PYSITELIB}/asdf/_tests/core/__init__.pyo 851${PYSITELIB}/asdf/_tests/core/__init__.pyo
 852${PYSITELIB}/asdf/_tests/core/_converters/__init__.py
 853${PYSITELIB}/asdf/_tests/core/_converters/__init__.pyc
 854${PYSITELIB}/asdf/_tests/core/_converters/__init__.pyo
 855${PYSITELIB}/asdf/_tests/core/_converters/test_complex.py
 856${PYSITELIB}/asdf/_tests/core/_converters/test_complex.pyc
 857${PYSITELIB}/asdf/_tests/core/_converters/test_complex.pyo
 858${PYSITELIB}/asdf/_tests/core/_converters/test_constant.py
 859${PYSITELIB}/asdf/_tests/core/_converters/test_constant.pyc
 860${PYSITELIB}/asdf/_tests/core/_converters/test_constant.pyo
 861${PYSITELIB}/asdf/_tests/core/_converters/test_external_reference.py
 862${PYSITELIB}/asdf/_tests/core/_converters/test_external_reference.pyc
 863${PYSITELIB}/asdf/_tests/core/_converters/test_external_reference.pyo
 864${PYSITELIB}/asdf/_tests/core/_converters/test_tree.py
 865${PYSITELIB}/asdf/_tests/core/_converters/test_tree.pyc
 866${PYSITELIB}/asdf/_tests/core/_converters/test_tree.pyo
753${PYSITELIB}/asdf/_tests/core/tests/__init__.py 867${PYSITELIB}/asdf/_tests/core/tests/__init__.py
754${PYSITELIB}/asdf/_tests/core/tests/__init__.pyc 868${PYSITELIB}/asdf/_tests/core/tests/__init__.pyc
755${PYSITELIB}/asdf/_tests/core/tests/__init__.pyo 869${PYSITELIB}/asdf/_tests/core/tests/__init__.pyo
756${PYSITELIB}/asdf/_tests/core/tests/test_integration.py 870${PYSITELIB}/asdf/_tests/core/tests/test_integration.py
757${PYSITELIB}/asdf/_tests/core/tests/test_integration.pyc 871${PYSITELIB}/asdf/_tests/core/tests/test_integration.pyc
758${PYSITELIB}/asdf/_tests/core/tests/test_integration.pyo 872${PYSITELIB}/asdf/_tests/core/tests/test_integration.pyo
759${PYSITELIB}/asdf/_tests/data/__init__.py 873${PYSITELIB}/asdf/_tests/data/__init__.py
760${PYSITELIB}/asdf/_tests/data/__init__.pyc 874${PYSITELIB}/asdf/_tests/data/__init__.pyc
761${PYSITELIB}/asdf/_tests/data/__init__.pyo 875${PYSITELIB}/asdf/_tests/data/__init__.pyo
762${PYSITELIB}/asdf/_tests/data/asdf.fits.gz 
763${PYSITELIB}/asdf/_tests/data/complex-42.0.0.yaml 876${PYSITELIB}/asdf/_tests/data/complex-42.0.0.yaml
764${PYSITELIB}/asdf/_tests/data/custom-1.0.0.yaml 877${PYSITELIB}/asdf/_tests/data/custom-1.0.0.yaml
765${PYSITELIB}/asdf/_tests/data/custom_flow-1.0.0.yaml 
766${PYSITELIB}/asdf/_tests/data/custom_flow-1.1.0.yaml 
767${PYSITELIB}/asdf/_tests/data/custom_schema.yaml 878${PYSITELIB}/asdf/_tests/data/custom_schema.yaml
768${PYSITELIB}/asdf/_tests/data/custom_schema_definitions.yaml 879${PYSITELIB}/asdf/_tests/data/custom_schema_definitions.yaml
769${PYSITELIB}/asdf/_tests/data/custom_schema_external_ref.yaml 880${PYSITELIB}/asdf/_tests/data/custom_schema_external_ref.yaml
770${PYSITELIB}/asdf/_tests/data/custom_style-1.0.0.yaml 
771${PYSITELIB}/asdf/_tests/data/default-1.0.0.yaml 
772${PYSITELIB}/asdf/_tests/data/example_schema.json 881${PYSITELIB}/asdf/_tests/data/example_schema.json
773${PYSITELIB}/asdf/_tests/data/extension_check.fits 
774${PYSITELIB}/asdf/_tests/data/foreign_tag_reference-1.0.0.yaml 
775${PYSITELIB}/asdf/_tests/data/fraction-1.0.0.yaml 882${PYSITELIB}/asdf/_tests/data/fraction-1.0.0.yaml
776${PYSITELIB}/asdf/_tests/data/fraction_with_inverse-1.0.0.yaml 883${PYSITELIB}/asdf/_tests/data/fraction_with_inverse-1.0.0.yaml
777${PYSITELIB}/asdf/_tests/data/fractional_2d_coord-1.0.0.yaml 884${PYSITELIB}/asdf/_tests/data/fractional_2d_coord-1.0.0.yaml
778${PYSITELIB}/asdf/_tests/data/missing-1.1.0.yaml 885${PYSITELIB}/asdf/_tests/data/missing-1.1.0.yaml
779${PYSITELIB}/asdf/_tests/data/one_of-1.0.0.yaml 
780${PYSITELIB}/asdf/_tests/data/self_referencing-1.0.0.yaml 886${PYSITELIB}/asdf/_tests/data/self_referencing-1.0.0.yaml
781${PYSITELIB}/asdf/_tests/data/tag_reference-1.0.0.yaml 
782${PYSITELIB}/asdf/_tests/data/version_mismatch.fits 
783${PYSITELIB}/asdf/_tests/httpserver.py 887${PYSITELIB}/asdf/_tests/httpserver.py
784${PYSITELIB}/asdf/_tests/httpserver.pyc 888${PYSITELIB}/asdf/_tests/httpserver.pyc
785${PYSITELIB}/asdf/_tests/httpserver.pyo 889${PYSITELIB}/asdf/_tests/httpserver.pyo
786${PYSITELIB}/asdf/_tests/objects.py 
787${PYSITELIB}/asdf/_tests/objects.pyc 
788${PYSITELIB}/asdf/_tests/objects.pyo 
789${PYSITELIB}/asdf/_tests/tags/__init__.py 890${PYSITELIB}/asdf/_tests/tags/__init__.py
790${PYSITELIB}/asdf/_tests/tags/__init__.pyc 891${PYSITELIB}/asdf/_tests/tags/__init__.pyc
791${PYSITELIB}/asdf/_tests/tags/__init__.pyo 892${PYSITELIB}/asdf/_tests/tags/__init__.pyo
792${PYSITELIB}/asdf/_tests/tags/core/__init__.py 893${PYSITELIB}/asdf/_tests/tags/core/__init__.py
793${PYSITELIB}/asdf/_tests/tags/core/__init__.pyc 894${PYSITELIB}/asdf/_tests/tags/core/__init__.pyc
794${PYSITELIB}/asdf/_tests/tags/core/__init__.pyo 895${PYSITELIB}/asdf/_tests/tags/core/__init__.pyo
795${PYSITELIB}/asdf/_tests/tags/core/tests/__init__.py 896${PYSITELIB}/asdf/_tests/tags/core/tests/__init__.py
796${PYSITELIB}/asdf/_tests/tags/core/tests/__init__.pyc 897${PYSITELIB}/asdf/_tests/tags/core/tests/__init__.pyc
797${PYSITELIB}/asdf/_tests/tags/core/tests/__init__.pyo 898${PYSITELIB}/asdf/_tests/tags/core/tests/__init__.pyo
798${PYSITELIB}/asdf/_tests/tags/core/tests/data/__init__.py 
799${PYSITELIB}/asdf/_tests/tags/core/tests/data/__init__.pyc 
800${PYSITELIB}/asdf/_tests/tags/core/tests/data/__init__.pyo 
801${PYSITELIB}/asdf/_tests/tags/core/tests/data/datatype-1.0.0.yaml 
802${PYSITELIB}/asdf/_tests/tags/core/tests/data/ndim-1.0.0.yaml 
803${PYSITELIB}/asdf/_tests/tags/core/tests/test_complex.py 
804${PYSITELIB}/asdf/_tests/tags/core/tests/test_complex.pyc 
805${PYSITELIB}/asdf/_tests/tags/core/tests/test_complex.pyo 
806${PYSITELIB}/asdf/_tests/tags/core/tests/test_extension_metadata.py 
807${PYSITELIB}/asdf/_tests/tags/core/tests/test_extension_metadata.pyc 
808${PYSITELIB}/asdf/_tests/tags/core/tests/test_extension_metadata.pyo 
809${PYSITELIB}/asdf/_tests/tags/core/tests/test_external_reference.py 
810${PYSITELIB}/asdf/_tests/tags/core/tests/test_external_reference.pyc 
811${PYSITELIB}/asdf/_tests/tags/core/tests/test_external_reference.pyo 
812${PYSITELIB}/asdf/_tests/tags/core/tests/test_history.py 
813${PYSITELIB}/asdf/_tests/tags/core/tests/test_history.pyc 
814${PYSITELIB}/asdf/_tests/tags/core/tests/test_history.pyo 
815${PYSITELIB}/asdf/_tests/tags/core/tests/test_integer.py 899${PYSITELIB}/asdf/_tests/tags/core/tests/test_integer.py
816${PYSITELIB}/asdf/_tests/tags/core/tests/test_integer.pyc 900${PYSITELIB}/asdf/_tests/tags/core/tests/test_integer.pyc
817${PYSITELIB}/asdf/_tests/tags/core/tests/test_integer.pyo 901${PYSITELIB}/asdf/_tests/tags/core/tests/test_integer.pyo
818${PYSITELIB}/asdf/_tests/tags/core/tests/test_ndarray.py 902${PYSITELIB}/asdf/_tests/tags/core/tests/test_ndarray.py
819${PYSITELIB}/asdf/_tests/tags/core/tests/test_ndarray.pyc 903${PYSITELIB}/asdf/_tests/tags/core/tests/test_ndarray.pyc
820${PYSITELIB}/asdf/_tests/tags/core/tests/test_ndarray.pyo 904${PYSITELIB}/asdf/_tests/tags/core/tests/test_ndarray.pyo
821${PYSITELIB}/asdf/_tests/test_api.py 905${PYSITELIB}/asdf/_tests/test_api.py
822${PYSITELIB}/asdf/_tests/test_api.pyc 906${PYSITELIB}/asdf/_tests/test_api.pyc
823${PYSITELIB}/asdf/_tests/test_api.pyo 907${PYSITELIB}/asdf/_tests/test_api.pyo
824${PYSITELIB}/asdf/_tests/test_array_blocks.py 908${PYSITELIB}/asdf/_tests/test_array_blocks.py
825${PYSITELIB}/asdf/_tests/test_array_blocks.pyc 909${PYSITELIB}/asdf/_tests/test_array_blocks.pyc
826${PYSITELIB}/asdf/_tests/test_array_blocks.pyo 910${PYSITELIB}/asdf/_tests/test_array_blocks.pyo
827${PYSITELIB}/asdf/_tests/test_asdf.py 911${PYSITELIB}/asdf/_tests/test_asdf.py
828${PYSITELIB}/asdf/_tests/test_asdf.pyc 912${PYSITELIB}/asdf/_tests/test_asdf.pyc
829${PYSITELIB}/asdf/_tests/test_asdf.pyo 913${PYSITELIB}/asdf/_tests/test_asdf.pyo
 914${PYSITELIB}/asdf/_tests/test_block_converter.py
 915${PYSITELIB}/asdf/_tests/test_block_converter.pyc
 916${PYSITELIB}/asdf/_tests/test_block_converter.pyo
830${PYSITELIB}/asdf/_tests/test_compression.py 917${PYSITELIB}/asdf/_tests/test_compression.py
831${PYSITELIB}/asdf/_tests/test_compression.pyc 918${PYSITELIB}/asdf/_tests/test_compression.pyc
832${PYSITELIB}/asdf/_tests/test_compression.pyo 919${PYSITELIB}/asdf/_tests/test_compression.pyo
833${PYSITELIB}/asdf/_tests/test_config.py 920${PYSITELIB}/asdf/_tests/test_config.py
834${PYSITELIB}/asdf/_tests/test_config.pyc 921${PYSITELIB}/asdf/_tests/test_config.pyc
835${PYSITELIB}/asdf/_tests/test_config.pyo 922${PYSITELIB}/asdf/_tests/test_config.pyo
836${PYSITELIB}/asdf/_tests/test_deprecated.py 923${PYSITELIB}/asdf/_tests/test_deprecated.py
837${PYSITELIB}/asdf/_tests/test_deprecated.pyc 924${PYSITELIB}/asdf/_tests/test_deprecated.pyc
838${PYSITELIB}/asdf/_tests/test_deprecated.pyo 925${PYSITELIB}/asdf/_tests/test_deprecated.pyo
839${PYSITELIB}/asdf/_tests/test_entry_points.py 926${PYSITELIB}/asdf/_tests/test_entry_points.py
840${PYSITELIB}/asdf/_tests/test_entry_points.pyc 927${PYSITELIB}/asdf/_tests/test_entry_points.pyc
841${PYSITELIB}/asdf/_tests/test_entry_points.pyo 928${PYSITELIB}/asdf/_tests/test_entry_points.pyo
842${PYSITELIB}/asdf/_tests/test_extension.py 929${PYSITELIB}/asdf/_tests/test_extension.py
843${PYSITELIB}/asdf/_tests/test_extension.pyc 930${PYSITELIB}/asdf/_tests/test_extension.pyc
844${PYSITELIB}/asdf/_tests/test_extension.pyo 931${PYSITELIB}/asdf/_tests/test_extension.pyo
845${PYSITELIB}/asdf/_tests/test_file_format.py 932${PYSITELIB}/asdf/_tests/test_file_format.py
846${PYSITELIB}/asdf/_tests/test_file_format.pyc 933${PYSITELIB}/asdf/_tests/test_file_format.pyc
847${PYSITELIB}/asdf/_tests/test_file_format.pyo 934${PYSITELIB}/asdf/_tests/test_file_format.pyo
848${PYSITELIB}/asdf/_tests/test_fits_embed.py 
849${PYSITELIB}/asdf/_tests/test_fits_embed.pyc 
850${PYSITELIB}/asdf/_tests/test_fits_embed.pyo 
851${PYSITELIB}/asdf/_tests/test_generic_io.py 935${PYSITELIB}/asdf/_tests/test_generic_io.py
852${PYSITELIB}/asdf/_tests/test_generic_io.pyc 936${PYSITELIB}/asdf/_tests/test_generic_io.pyc
853${PYSITELIB}/asdf/_tests/test_generic_io.pyo 937${PYSITELIB}/asdf/_tests/test_generic_io.pyo
854${PYSITELIB}/asdf/_tests/test_helpers.py 938${PYSITELIB}/asdf/_tests/test_history.py
855${PYSITELIB}/asdf/_tests/test_helpers.pyc 939${PYSITELIB}/asdf/_tests/test_history.pyc
856${PYSITELIB}/asdf/_tests/test_helpers.pyo 940${PYSITELIB}/asdf/_tests/test_history.pyo
857${PYSITELIB}/asdf/_tests/test_info.py 941${PYSITELIB}/asdf/_tests/test_info.py
858${PYSITELIB}/asdf/_tests/test_info.pyc 942${PYSITELIB}/asdf/_tests/test_info.pyc
859${PYSITELIB}/asdf/_tests/test_info.pyo 943${PYSITELIB}/asdf/_tests/test_info.pyo
860${PYSITELIB}/asdf/_tests/test_integration.py 944${PYSITELIB}/asdf/_tests/test_integration.py
861${PYSITELIB}/asdf/_tests/test_integration.pyc 945${PYSITELIB}/asdf/_tests/test_integration.pyc
862${PYSITELIB}/asdf/_tests/test_integration.pyo 946${PYSITELIB}/asdf/_tests/test_integration.pyo
863${PYSITELIB}/asdf/_tests/test_reference.py 947${PYSITELIB}/asdf/_tests/test_reference.py
864${PYSITELIB}/asdf/_tests/test_reference.pyc 948${PYSITELIB}/asdf/_tests/test_reference.pyc
865${PYSITELIB}/asdf/_tests/test_reference.pyo 949${PYSITELIB}/asdf/_tests/test_reference.pyo
866${PYSITELIB}/asdf/_tests/test_reference_files.py 950${PYSITELIB}/asdf/_tests/test_reference_files.py
867${PYSITELIB}/asdf/_tests/test_reference_files.pyc 951${PYSITELIB}/asdf/_tests/test_reference_files.pyc
868${PYSITELIB}/asdf/_tests/test_reference_files.pyo 952${PYSITELIB}/asdf/_tests/test_reference_files.pyo
869${PYSITELIB}/asdf/_tests/test_resolver.py 
870${PYSITELIB}/asdf/_tests/test_resolver.pyc 
871${PYSITELIB}/asdf/_tests/test_resolver.pyo 
872${PYSITELIB}/asdf/_tests/test_resource.py 953${PYSITELIB}/asdf/_tests/test_resource.py
873${PYSITELIB}/asdf/_tests/test_resource.pyc 954${PYSITELIB}/asdf/_tests/test_resource.pyc
874${PYSITELIB}/asdf/_tests/test_resource.pyo 955${PYSITELIB}/asdf/_tests/test_resource.pyo
875${PYSITELIB}/asdf/_tests/test_schema.py 956${PYSITELIB}/asdf/_tests/test_schema.py
876${PYSITELIB}/asdf/_tests/test_schema.pyc 957${PYSITELIB}/asdf/_tests/test_schema.pyc
877${PYSITELIB}/asdf/_tests/test_schema.pyo 958${PYSITELIB}/asdf/_tests/test_schema.pyo
878${PYSITELIB}/asdf/_tests/test_search.py 959${PYSITELIB}/asdf/_tests/test_search.py
879${PYSITELIB}/asdf/_tests/test_search.pyc 960${PYSITELIB}/asdf/_tests/test_search.pyc
880${PYSITELIB}/asdf/_tests/test_search.pyo 961${PYSITELIB}/asdf/_tests/test_search.pyo
 962${PYSITELIB}/asdf/_tests/test_serialization_context.py
 963${PYSITELIB}/asdf/_tests/test_serialization_context.pyc
 964${PYSITELIB}/asdf/_tests/test_serialization_context.pyo
881${PYSITELIB}/asdf/_tests/test_stream.py 965${PYSITELIB}/asdf/_tests/test_stream.py
882${PYSITELIB}/asdf/_tests/test_stream.pyc 966${PYSITELIB}/asdf/_tests/test_stream.pyc
883${PYSITELIB}/asdf/_tests/test_stream.pyo 967${PYSITELIB}/asdf/_tests/test_stream.pyo
884${PYSITELIB}/asdf/_tests/test_tagged.py 968${PYSITELIB}/asdf/_tests/test_tagged.py
885${PYSITELIB}/asdf/_tests/test_tagged.pyc 969${PYSITELIB}/asdf/_tests/test_tagged.pyc
886${PYSITELIB}/asdf/_tests/test_tagged.pyo 970${PYSITELIB}/asdf/_tests/test_tagged.pyo
887${PYSITELIB}/asdf/_tests/test_treeutil.py 971${PYSITELIB}/asdf/_tests/test_treeutil.py
888${PYSITELIB}/asdf/_tests/test_treeutil.pyc 972${PYSITELIB}/asdf/_tests/test_treeutil.pyc
889${PYSITELIB}/asdf/_tests/test_treeutil.pyo 973${PYSITELIB}/asdf/_tests/test_treeutil.pyo
890${PYSITELIB}/asdf/_tests/test_types.py 974${PYSITELIB}/asdf/_tests/test_types.py
891${PYSITELIB}/asdf/_tests/test_types.pyc 975${PYSITELIB}/asdf/_tests/test_types.pyc
892${PYSITELIB}/asdf/_tests/test_types.pyo 976${PYSITELIB}/asdf/_tests/test_types.pyo
893${PYSITELIB}/asdf/_tests/test_util.py 977${PYSITELIB}/asdf/_tests/test_util.py
894${PYSITELIB}/asdf/_tests/test_util.pyc 978${PYSITELIB}/asdf/_tests/test_util.pyc
895${PYSITELIB}/asdf/_tests/test_util.pyo 979${PYSITELIB}/asdf/_tests/test_util.pyo
896${PYSITELIB}/asdf/_tests/test_versioning.py 980${PYSITELIB}/asdf/_tests/test_versioning.py
897${PYSITELIB}/asdf/_tests/test_versioning.pyc 981${PYSITELIB}/asdf/_tests/test_versioning.pyc
898${PYSITELIB}/asdf/_tests/test_versioning.pyo 982${PYSITELIB}/asdf/_tests/test_versioning.pyo
899${PYSITELIB}/asdf/_tests/test_yaml.py 983${PYSITELIB}/asdf/_tests/test_yaml.py
900${PYSITELIB}/asdf/_tests/test_yaml.pyc 984${PYSITELIB}/asdf/_tests/test_yaml.pyc
901${PYSITELIB}/asdf/_tests/test_yaml.pyo 985${PYSITELIB}/asdf/_tests/test_yaml.pyo
902${PYSITELIB}/asdf/_type_index.py 
903${PYSITELIB}/asdf/_type_index.pyc 
904${PYSITELIB}/asdf/_type_index.pyo 
905${PYSITELIB}/asdf/_types.py 
906${PYSITELIB}/asdf/_types.pyc 
907${PYSITELIB}/asdf/_types.pyo 
908${PYSITELIB}/asdf/_version.py 986${PYSITELIB}/asdf/_version.py
909${PYSITELIB}/asdf/_version.pyc 987${PYSITELIB}/asdf/_version.pyc
910${PYSITELIB}/asdf/_version.pyo 988${PYSITELIB}/asdf/_version.pyo
911${PYSITELIB}/asdf/asdf.py 989${PYSITELIB}/asdf/asdf.py
912${PYSITELIB}/asdf/asdf.pyc 990${PYSITELIB}/asdf/asdf.pyc
913${PYSITELIB}/asdf/asdf.pyo 991${PYSITELIB}/asdf/asdf.pyo
914${PYSITELIB}/asdf/asdftypes.py 
915${PYSITELIB}/asdf/asdftypes.pyc 
916${PYSITELIB}/asdf/asdftypes.pyo 
917${PYSITELIB}/asdf/block.py 
918${PYSITELIB}/asdf/block.pyc 
919${PYSITELIB}/asdf/block.pyo 
920${PYSITELIB}/asdf/commands/__init__.py 992${PYSITELIB}/asdf/commands/__init__.py
921${PYSITELIB}/asdf/commands/__init__.pyc 993${PYSITELIB}/asdf/commands/__init__.pyc
922${PYSITELIB}/asdf/commands/__init__.pyo 994${PYSITELIB}/asdf/commands/__init__.pyo
923${PYSITELIB}/asdf/commands/defragment.py 995${PYSITELIB}/asdf/commands/defragment.py
924${PYSITELIB}/asdf/commands/defragment.pyc 996${PYSITELIB}/asdf/commands/defragment.pyc
925${PYSITELIB}/asdf/commands/defragment.pyo 997${PYSITELIB}/asdf/commands/defragment.pyo
926${PYSITELIB}/asdf/commands/diff.py 998${PYSITELIB}/asdf/commands/diff.py
927${PYSITELIB}/asdf/commands/diff.pyc 999${PYSITELIB}/asdf/commands/diff.pyc
928${PYSITELIB}/asdf/commands/diff.pyo 1000${PYSITELIB}/asdf/commands/diff.pyo
929${PYSITELIB}/asdf/commands/edit.py 1001${PYSITELIB}/asdf/commands/edit.py
930${PYSITELIB}/asdf/commands/edit.pyc 1002${PYSITELIB}/asdf/commands/edit.pyc
931${PYSITELIB}/asdf/commands/edit.pyo 1003${PYSITELIB}/asdf/commands/edit.pyo
932${PYSITELIB}/asdf/commands/exploded.py 1004${PYSITELIB}/asdf/commands/exploded.py
933${PYSITELIB}/asdf/commands/exploded.pyc 1005${PYSITELIB}/asdf/commands/exploded.pyc
934${PYSITELIB}/asdf/commands/exploded.pyo 1006${PYSITELIB}/asdf/commands/exploded.pyo
935${PYSITELIB}/asdf/commands/extension.py 1007${PYSITELIB}/asdf/commands/extension.py
936${PYSITELIB}/asdf/commands/extension.pyc 1008${PYSITELIB}/asdf/commands/extension.pyc
937${PYSITELIB}/asdf/commands/extension.pyo 1009${PYSITELIB}/asdf/commands/extension.pyo
938${PYSITELIB}/asdf/commands/extract.py 
939${PYSITELIB}/asdf/commands/extract.pyc 
940${PYSITELIB}/asdf/commands/extract.pyo 
941${PYSITELIB}/asdf/commands/info.py 1010${PYSITELIB}/asdf/commands/info.py
942${PYSITELIB}/asdf/commands/info.pyc 1011${PYSITELIB}/asdf/commands/info.pyc
943${PYSITELIB}/asdf/commands/info.pyo 1012${PYSITELIB}/asdf/commands/info.pyo
944${PYSITELIB}/asdf/commands/main.py 1013${PYSITELIB}/asdf/commands/main.py
945${PYSITELIB}/asdf/commands/main.pyc 1014${PYSITELIB}/asdf/commands/main.pyc
946${PYSITELIB}/asdf/commands/main.pyo 1015${PYSITELIB}/asdf/commands/main.pyo
947${PYSITELIB}/asdf/commands/remove_hdu.py 
948${PYSITELIB}/asdf/commands/remove_hdu.pyc 
949${PYSITELIB}/asdf/commands/remove_hdu.pyo 
950${PYSITELIB}/asdf/commands/tags.py 1016${PYSITELIB}/asdf/commands/tags.py
951${PYSITELIB}/asdf/commands/tags.pyc 1017${PYSITELIB}/asdf/commands/tags.pyc
952${PYSITELIB}/asdf/commands/tags.pyo 1018${PYSITELIB}/asdf/commands/tags.pyo
953${PYSITELIB}/asdf/commands/to_yaml.py 1019${PYSITELIB}/asdf/commands/to_yaml.py
954${PYSITELIB}/asdf/commands/to_yaml.pyc 1020${PYSITELIB}/asdf/commands/to_yaml.pyc
955${PYSITELIB}/asdf/commands/to_yaml.pyo 1021${PYSITELIB}/asdf/commands/to_yaml.pyo
956${PYSITELIB}/asdf/compression.py 1022${PYSITELIB}/asdf/compression.py
957${PYSITELIB}/asdf/compression.pyc 1023${PYSITELIB}/asdf/compression.pyc
958${PYSITELIB}/asdf/compression.pyo 1024${PYSITELIB}/asdf/compression.pyo
959${PYSITELIB}/asdf/config.py 1025${PYSITELIB}/asdf/config.py
960${PYSITELIB}/asdf/config.pyc 1026${PYSITELIB}/asdf/config.pyc
961${PYSITELIB}/asdf/config.pyo 1027${PYSITELIB}/asdf/config.pyo
962${PYSITELIB}/asdf/conftest.py 1028${PYSITELIB}/asdf/conftest.py
963${PYSITELIB}/asdf/conftest.pyc 1029${PYSITELIB}/asdf/conftest.pyc
964${PYSITELIB}/asdf/conftest.pyo 1030${PYSITELIB}/asdf/conftest.pyo
965${PYSITELIB}/asdf/constants.py 1031${PYSITELIB}/asdf/constants.py
966${PYSITELIB}/asdf/constants.pyc 1032${PYSITELIB}/asdf/constants.pyc
967${PYSITELIB}/asdf/constants.pyo 1033${PYSITELIB}/asdf/constants.pyo
968${PYSITELIB}/asdf/core/__init__.py 1034${PYSITELIB}/asdf/core/__init__.py
969${PYSITELIB}/asdf/core/__init__.pyc 1035${PYSITELIB}/asdf/core/__init__.pyc
970${PYSITELIB}/asdf/core/__init__.pyo 1036${PYSITELIB}/asdf/core/__init__.pyo
 1037${PYSITELIB}/asdf/core/_converters/__init__.py
 1038${PYSITELIB}/asdf/core/_converters/__init__.pyc
 1039${PYSITELIB}/asdf/core/_converters/__init__.pyo
 1040${PYSITELIB}/asdf/core/_converters/complex.py
 1041${PYSITELIB}/asdf/core/_converters/complex.pyc
 1042${PYSITELIB}/asdf/core/_converters/complex.pyo
 1043${PYSITELIB}/asdf/core/_converters/constant.py
 1044${PYSITELIB}/asdf/core/_converters/constant.pyc
 1045${PYSITELIB}/asdf/core/_converters/constant.pyo
 1046${PYSITELIB}/asdf/core/_converters/external_reference.py
 1047${PYSITELIB}/asdf/core/_converters/external_reference.pyc
 1048${PYSITELIB}/asdf/core/_converters/external_reference.pyo
 1049${PYSITELIB}/asdf/core/_converters/integer.py
 1050${PYSITELIB}/asdf/core/_converters/integer.pyc
 1051${PYSITELIB}/asdf/core/_converters/integer.pyo
 1052${PYSITELIB}/asdf/core/_converters/ndarray.py
 1053${PYSITELIB}/asdf/core/_converters/ndarray.pyc
 1054${PYSITELIB}/asdf/core/_converters/ndarray.pyo
 1055${PYSITELIB}/asdf/core/_converters/reference.py
 1056${PYSITELIB}/asdf/core/_converters/reference.pyc
 1057${PYSITELIB}/asdf/core/_converters/reference.pyo
 1058${PYSITELIB}/asdf/core/_converters/tree.py
 1059${PYSITELIB}/asdf/core/_converters/tree.pyc
 1060${PYSITELIB}/asdf/core/_converters/tree.pyo
971${PYSITELIB}/asdf/core/_extensions.py 1061${PYSITELIB}/asdf/core/_extensions.py
972${PYSITELIB}/asdf/core/_extensions.pyc 1062${PYSITELIB}/asdf/core/_extensions.pyc
973${PYSITELIB}/asdf/core/_extensions.pyo 1063${PYSITELIB}/asdf/core/_extensions.pyo
974${PYSITELIB}/asdf/core/_integration.py 1064${PYSITELIB}/asdf/core/_integration.py
975${PYSITELIB}/asdf/core/_integration.pyc 1065${PYSITELIB}/asdf/core/_integration.pyc
976${PYSITELIB}/asdf/core/_integration.pyo 1066${PYSITELIB}/asdf/core/_integration.pyo
977${PYSITELIB}/asdf/core/_validators/__init__.py 1067${PYSITELIB}/asdf/core/_validators/__init__.py
978${PYSITELIB}/asdf/core/_validators/__init__.pyc 1068${PYSITELIB}/asdf/core/_validators/__init__.pyc
979${PYSITELIB}/asdf/core/_validators/__init__.pyo 1069${PYSITELIB}/asdf/core/_validators/__init__.pyo
980${PYSITELIB}/asdf/core/_validators/ndarray.py 1070${PYSITELIB}/asdf/core/_validators/ndarray.py
981${PYSITELIB}/asdf/core/_validators/ndarray.pyc 1071${PYSITELIB}/asdf/core/_validators/ndarray.pyc
982${PYSITELIB}/asdf/core/_validators/ndarray.pyo 1072${PYSITELIB}/asdf/core/_validators/ndarray.pyo
983${PYSITELIB}/asdf/entry_points.py 1073${PYSITELIB}/asdf/entry_points.py
@@ -988,119 +1078,101 @@ ${PYSITELIB}/asdf/exceptions.pyc @@ -988,119 +1078,101 @@ ${PYSITELIB}/asdf/exceptions.pyc
988${PYSITELIB}/asdf/exceptions.pyo 1078${PYSITELIB}/asdf/exceptions.pyo
989${PYSITELIB}/asdf/extension/__init__.py 1079${PYSITELIB}/asdf/extension/__init__.py
990${PYSITELIB}/asdf/extension/__init__.pyc 1080${PYSITELIB}/asdf/extension/__init__.pyc
991${PYSITELIB}/asdf/extension/__init__.pyo 1081${PYSITELIB}/asdf/extension/__init__.pyo
992${PYSITELIB}/asdf/extension/_compressor.py 1082${PYSITELIB}/asdf/extension/_compressor.py
993${PYSITELIB}/asdf/extension/_compressor.pyc 1083${PYSITELIB}/asdf/extension/_compressor.pyc
994${PYSITELIB}/asdf/extension/_compressor.pyo 1084${PYSITELIB}/asdf/extension/_compressor.pyo
995${PYSITELIB}/asdf/extension/_converter.py 1085${PYSITELIB}/asdf/extension/_converter.py
996${PYSITELIB}/asdf/extension/_converter.pyc 1086${PYSITELIB}/asdf/extension/_converter.pyc
997${PYSITELIB}/asdf/extension/_converter.pyo 1087${PYSITELIB}/asdf/extension/_converter.pyo
998${PYSITELIB}/asdf/extension/_extension.py 1088${PYSITELIB}/asdf/extension/_extension.py
999${PYSITELIB}/asdf/extension/_extension.pyc 1089${PYSITELIB}/asdf/extension/_extension.pyc
1000${PYSITELIB}/asdf/extension/_extension.pyo 1090${PYSITELIB}/asdf/extension/_extension.pyo
1001${PYSITELIB}/asdf/extension/_legacy.py 
1002${PYSITELIB}/asdf/extension/_legacy.pyc 
1003${PYSITELIB}/asdf/extension/_legacy.pyo 
1004${PYSITELIB}/asdf/extension/_manager.py 1091${PYSITELIB}/asdf/extension/_manager.py
1005${PYSITELIB}/asdf/extension/_manager.pyc 1092${PYSITELIB}/asdf/extension/_manager.pyc
1006${PYSITELIB}/asdf/extension/_manager.pyo 1093${PYSITELIB}/asdf/extension/_manager.pyo
1007${PYSITELIB}/asdf/extension/_manifest.py 1094${PYSITELIB}/asdf/extension/_manifest.py
1008${PYSITELIB}/asdf/extension/_manifest.pyc 1095${PYSITELIB}/asdf/extension/_manifest.pyc
1009${PYSITELIB}/asdf/extension/_manifest.pyo 1096${PYSITELIB}/asdf/extension/_manifest.pyo
 1097${PYSITELIB}/asdf/extension/_serialization_context.py
 1098${PYSITELIB}/asdf/extension/_serialization_context.pyc
 1099${PYSITELIB}/asdf/extension/_serialization_context.pyo
1010${PYSITELIB}/asdf/extension/_tag.py 1100${PYSITELIB}/asdf/extension/_tag.py
1011${PYSITELIB}/asdf/extension/_tag.pyc 1101${PYSITELIB}/asdf/extension/_tag.pyc
1012${PYSITELIB}/asdf/extension/_tag.pyo 1102${PYSITELIB}/asdf/extension/_tag.pyo
1013${PYSITELIB}/asdf/extension/_validator.py 1103${PYSITELIB}/asdf/extension/_validator.py
1014${PYSITELIB}/asdf/extension/_validator.pyc 1104${PYSITELIB}/asdf/extension/_validator.pyc
1015${PYSITELIB}/asdf/extension/_validator.pyo 1105${PYSITELIB}/asdf/extension/_validator.pyo
1016${PYSITELIB}/asdf/extern/RangeHTTPServer.py 1106${PYSITELIB}/asdf/extern/RangeHTTPServer.py
1017${PYSITELIB}/asdf/extern/RangeHTTPServer.pyc 1107${PYSITELIB}/asdf/extern/RangeHTTPServer.pyc
1018${PYSITELIB}/asdf/extern/RangeHTTPServer.pyo 1108${PYSITELIB}/asdf/extern/RangeHTTPServer.pyo
1019${PYSITELIB}/asdf/extern/__init__.py 1109${PYSITELIB}/asdf/extern/__init__.py
1020${PYSITELIB}/asdf/extern/__init__.pyc 1110${PYSITELIB}/asdf/extern/__init__.pyc
1021${PYSITELIB}/asdf/extern/__init__.pyo 1111${PYSITELIB}/asdf/extern/__init__.pyo
1022${PYSITELIB}/asdf/extern/atomicfile.py 1112${PYSITELIB}/asdf/extern/atomicfile.py
1023${PYSITELIB}/asdf/extern/atomicfile.pyc 1113${PYSITELIB}/asdf/extern/atomicfile.pyc
1024${PYSITELIB}/asdf/extern/atomicfile.pyo 1114${PYSITELIB}/asdf/extern/atomicfile.pyo
1025${PYSITELIB}/asdf/fits_embed.py 
1026${PYSITELIB}/asdf/fits_embed.pyc 
1027${PYSITELIB}/asdf/fits_embed.pyo 
1028${PYSITELIB}/asdf/generic_io.py 1115${PYSITELIB}/asdf/generic_io.py
1029${PYSITELIB}/asdf/generic_io.pyc 1116${PYSITELIB}/asdf/generic_io.pyc
1030${PYSITELIB}/asdf/generic_io.pyo 1117${PYSITELIB}/asdf/generic_io.pyo
1031${PYSITELIB}/asdf/reference.py 1118${PYSITELIB}/asdf/reference.py
1032${PYSITELIB}/asdf/reference.pyc 1119${PYSITELIB}/asdf/reference.pyc
1033${PYSITELIB}/asdf/reference.pyo 1120${PYSITELIB}/asdf/reference.pyo
1034${PYSITELIB}/asdf/resolver.py 
1035${PYSITELIB}/asdf/resolver.pyc 
1036${PYSITELIB}/asdf/resolver.pyo 
1037${PYSITELIB}/asdf/resource.py 1121${PYSITELIB}/asdf/resource.py
1038${PYSITELIB}/asdf/resource.pyc 1122${PYSITELIB}/asdf/resource.pyc
1039${PYSITELIB}/asdf/resource.pyo 1123${PYSITELIB}/asdf/resource.pyo
1040${PYSITELIB}/asdf/schema.py 1124${PYSITELIB}/asdf/schema.py
1041${PYSITELIB}/asdf/schema.pyc 1125${PYSITELIB}/asdf/schema.pyc
1042${PYSITELIB}/asdf/schema.pyo 1126${PYSITELIB}/asdf/schema.pyo
1043${PYSITELIB}/asdf/search.py 1127${PYSITELIB}/asdf/search.py
1044${PYSITELIB}/asdf/search.pyc 1128${PYSITELIB}/asdf/search.pyc
1045${PYSITELIB}/asdf/search.pyo 1129${PYSITELIB}/asdf/search.pyo
1046${PYSITELIB}/asdf/stream.py 1130${PYSITELIB}/asdf/stream.py
1047${PYSITELIB}/asdf/stream.pyc 1131${PYSITELIB}/asdf/stream.pyc
1048${PYSITELIB}/asdf/stream.pyo 1132${PYSITELIB}/asdf/stream.pyo
1049${PYSITELIB}/asdf/tagged.py 1133${PYSITELIB}/asdf/tagged.py
1050${PYSITELIB}/asdf/tagged.pyc 1134${PYSITELIB}/asdf/tagged.pyc
1051${PYSITELIB}/asdf/tagged.pyo 1135${PYSITELIB}/asdf/tagged.pyo
1052${PYSITELIB}/asdf/tags/__init__.py 1136${PYSITELIB}/asdf/tags/__init__.py
1053${PYSITELIB}/asdf/tags/__init__.pyc 1137${PYSITELIB}/asdf/tags/__init__.pyc
1054${PYSITELIB}/asdf/tags/__init__.pyo 1138${PYSITELIB}/asdf/tags/__init__.pyo
1055${PYSITELIB}/asdf/tags/core/__init__.py 1139${PYSITELIB}/asdf/tags/core/__init__.py
1056${PYSITELIB}/asdf/tags/core/__init__.pyc 1140${PYSITELIB}/asdf/tags/core/__init__.pyc
1057${PYSITELIB}/asdf/tags/core/__init__.pyo 1141${PYSITELIB}/asdf/tags/core/__init__.pyo
1058${PYSITELIB}/asdf/tags/core/complex.py 
1059${PYSITELIB}/asdf/tags/core/complex.pyc 
1060${PYSITELIB}/asdf/tags/core/complex.pyo 
1061${PYSITELIB}/asdf/tags/core/constant.py 1142${PYSITELIB}/asdf/tags/core/constant.py
1062${PYSITELIB}/asdf/tags/core/constant.pyc 1143${PYSITELIB}/asdf/tags/core/constant.pyc
1063${PYSITELIB}/asdf/tags/core/constant.pyo 1144${PYSITELIB}/asdf/tags/core/constant.pyo
1064${PYSITELIB}/asdf/tags/core/external_reference.py 1145${PYSITELIB}/asdf/tags/core/external_reference.py
1065${PYSITELIB}/asdf/tags/core/external_reference.pyc 1146${PYSITELIB}/asdf/tags/core/external_reference.pyc
1066${PYSITELIB}/asdf/tags/core/external_reference.pyo 1147${PYSITELIB}/asdf/tags/core/external_reference.pyo
1067${PYSITELIB}/asdf/tags/core/integer.py 1148${PYSITELIB}/asdf/tags/core/integer.py
1068${PYSITELIB}/asdf/tags/core/integer.pyc 1149${PYSITELIB}/asdf/tags/core/integer.pyc
1069${PYSITELIB}/asdf/tags/core/integer.pyo 1150${PYSITELIB}/asdf/tags/core/integer.pyo
1070${PYSITELIB}/asdf/tags/core/ndarray.py 1151${PYSITELIB}/asdf/tags/core/ndarray.py
1071${PYSITELIB}/asdf/tags/core/ndarray.pyc 1152${PYSITELIB}/asdf/tags/core/ndarray.pyc
1072${PYSITELIB}/asdf/tags/core/ndarray.pyo 1153${PYSITELIB}/asdf/tags/core/ndarray.pyo
 1154${PYSITELIB}/asdf/tags/core/stream.py
 1155${PYSITELIB}/asdf/tags/core/stream.pyc
 1156${PYSITELIB}/asdf/tags/core/stream.pyo
1073${PYSITELIB}/asdf/testing/__init__.py 1157${PYSITELIB}/asdf/testing/__init__.py
1074${PYSITELIB}/asdf/testing/__init__.pyc 1158${PYSITELIB}/asdf/testing/__init__.pyc
1075${PYSITELIB}/asdf/testing/__init__.pyo 1159${PYSITELIB}/asdf/testing/__init__.pyo
1076${PYSITELIB}/asdf/testing/helpers.py 1160${PYSITELIB}/asdf/testing/helpers.py
1077${PYSITELIB}/asdf/testing/helpers.pyc 1161${PYSITELIB}/asdf/testing/helpers.pyc
1078${PYSITELIB}/asdf/testing/helpers.pyo 1162${PYSITELIB}/asdf/testing/helpers.pyo
1079${PYSITELIB}/asdf/tests/__init__.py 
1080${PYSITELIB}/asdf/tests/__init__.pyc 
1081${PYSITELIB}/asdf/tests/__init__.pyo 
1082${PYSITELIB}/asdf/tests/helpers.py 
1083${PYSITELIB}/asdf/tests/helpers.pyc 
1084${PYSITELIB}/asdf/tests/helpers.pyo 
1085${PYSITELIB}/asdf/treeutil.py 1163${PYSITELIB}/asdf/treeutil.py
1086${PYSITELIB}/asdf/treeutil.pyc 1164${PYSITELIB}/asdf/treeutil.pyc
1087${PYSITELIB}/asdf/treeutil.pyo 1165${PYSITELIB}/asdf/treeutil.pyo
1088${PYSITELIB}/asdf/type_index.py 
1089${PYSITELIB}/asdf/type_index.pyc 
1090${PYSITELIB}/asdf/type_index.pyo 
1091${PYSITELIB}/asdf/types.py 
1092${PYSITELIB}/asdf/types.pyc 
1093${PYSITELIB}/asdf/types.pyo 
1094${PYSITELIB}/asdf/util.py 1166${PYSITELIB}/asdf/util.py
1095${PYSITELIB}/asdf/util.pyc 1167${PYSITELIB}/asdf/util.pyc
1096${PYSITELIB}/asdf/util.pyo 1168${PYSITELIB}/asdf/util.pyo
1097${PYSITELIB}/asdf/versioning.py 1169${PYSITELIB}/asdf/versioning.py
1098${PYSITELIB}/asdf/versioning.pyc 1170${PYSITELIB}/asdf/versioning.pyc
1099${PYSITELIB}/asdf/versioning.pyo 1171${PYSITELIB}/asdf/versioning.pyo
1100${PYSITELIB}/asdf/yamlutil.py 1172${PYSITELIB}/asdf/yamlutil.py
1101${PYSITELIB}/asdf/yamlutil.pyc 1173${PYSITELIB}/asdf/yamlutil.pyc
1102${PYSITELIB}/asdf/yamlutil.pyo 1174${PYSITELIB}/asdf/yamlutil.pyo
1103${PYSITELIB}/pytest_asdf/__init__.py 1175${PYSITELIB}/pytest_asdf/__init__.py
1104${PYSITELIB}/pytest_asdf/__init__.pyc 1176${PYSITELIB}/pytest_asdf/__init__.pyc
1105${PYSITELIB}/pytest_asdf/__init__.pyo 1177${PYSITELIB}/pytest_asdf/__init__.pyo
1106${PYSITELIB}/pytest_asdf/plugin.py 1178${PYSITELIB}/pytest_asdf/plugin.py

cvs diff -r1.8 -r1.9 pkgsrc/math/py-asdf/distinfo (expand / switch to unified diff)

--- pkgsrc/math/py-asdf/distinfo 2023/10/04 20:16:17 1.8
+++ pkgsrc/math/py-asdf/distinfo 2023/11/10 18:54:09 1.9
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.8 2023/10/04 20:16:17 adam Exp $ 1$NetBSD: distinfo,v 1.9 2023/11/10 18:54:09 adam Exp $
2 2
3BLAKE2s (asdf-2.15.2.tar.gz) = d5fc240787d1cea205c62d605f3fcc1dbacb216514a0cd3c90216a92070f60e9 3BLAKE2s (asdf-3.0.1.tar.gz) = b967bc8f0fc917eac1cb9776e6888803f08ce7be3320cf6818da13cead82fa12
4SHA512 (asdf-2.15.2.tar.gz) = 391eae3a933d09754e997e756731a39155116c4e61f8e046e0bcccdf2d439ef72bf68ea8c445691ed2d94d2c1f9d6b8297eb770f2b2a5779231ef92a12c3657d 4SHA512 (asdf-3.0.1.tar.gz) = 28b2726370ac47f741bba648bfae46da3f6ca380567dd40c5e75d4e5e06796d55a060e1bb817a656d71f949ec100073d86631c49646726a2e604dec4fa67fcd9
5Size (asdf-2.15.2.tar.gz) = 805454 bytes 5Size (asdf-3.0.1.tar.gz) = 789472 bytes