Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python312-asdf | Distribution: openSUSE:Factory:zSystems |
Version: 3.5.0 | Vendor: openSUSE |
Release: 1.1 | Build date: Tue Nov 12 10:33:58 2024 |
Group: Unspecified | Build host: reproducible |
Size: 5895361 | Source RPM: python-asdf-3.5.0-1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://github.com/asdf-format/asdf | |
Summary: Python tools to handle ASDF files |
The Advanced Scientific Data Format (ASDF) is a next-generation interchange format for scientific data. This package contains the Python implementation of the ASDF Standard.
BSD-2-Clause AND BSD-3-Clause
* Tue Nov 12 2024 Dirk Müller <dmueller@suse.com> - update to 3.5.0: * Allow asdf.util.load_yaml to handle recursive objects * added issue links to changelog entries * Change asdf standard changelog entries to notes to ease transition to towncrier * fix changelog checker to remove brackets * Deprecate ignore_version_mismatch. This option has done nothing since asdf 3.0.0 and will be removed in an upcoming asdf version * Thu Aug 29 2024 Ben Greiner <code@bnavigator.de> - Update to 3.4.0 * Fix issue where roundtripping a masked array with no masked values removes the mask [#1803] * Use a custom exception AsdfSerializationError to indicate when an object in the tree fails to be serialized by asdf (and by yaml). This exception currently inherits from yaml.representer.RepresenterError to provide backwards compatibility. However this inheritance may be dropped in a future asdf version. Please migrate to the new AsdfSerializationError. [#1809] * Drop importlib_metadata as a dependency on Python 3.12 and newer [#1810] * Bumped minimal requirement on attrs from 20.1.0 to 22.2.0 [#1815] - Release 3.3.0 * Fix __asdf_traverse__ for non-tagged objects [#1739] * Deprecate asdf.testing.helpers.format_tag [#1774] * Deprecate asdf.versioning.AsdfSpec [#1774] * Deprecate asdf.util.filepath_to_url use pathlib.Path.to_uri [#1735] * Record package providing manifest for extensions used to write a file and AsdfPackageVersionWarning when installed extension/manifest package does not match that used to write the file [#1758] * Fix bug where a dictionary containing a key id caused any contained references to fail to resolve [#1716] * Issue a AsdfManifestURIMismatchWarning during write if a used extension was created from a manifest registered with a uri that does not match the id in the manifest [#1785] * Allow converters to provide types as strings that can resolve to public classes (even if the class is implemented in a private module). [#1654] * Add options to control saving the base array when saving array views controlled via AsdfConfig.default_array_save_base, AsdfFile.set_array_save_base and SerializationContext.set_array_save_base [#1753] * Deprecate ignore_implicit_conversion and "implicit conversion" [#1724] * Add lazy_tree option to asdf.open and asdf.config to allow lazy deserialization of ASDF tagged tree nodes to custom objects. [#1733] * Fri Apr 19 2024 Ben Greiner <code@bnavigator.de> - Update to 3.2.0 * Deprecate AsdfFile.version_map [#1745] * Fix numpy.ma.MaskedArray saving for numpy 2.x [#1769] * Add float16 support [#1692] * Removed unused asdf-unit-schemas dependency [#1767] * Sun Mar 10 2024 Ben Greiner <code@bnavigator.de> - Update to 3.1.0 * Cleanup asdf.util including deprecating: human_list resolve_name minversion and iter_subclasses [#1688] * Deprecate validation on AsdfFile.tree assignment. Please use AsdfFile.validate to validate the tree [#1691] * Deprecate validation during AsdfFile.resolve_references. Please use AsdfFile.validate to validate the tree [#1691] * Deprecate asdf.asdf and AsdfFile.resolve_and_inline [#1690] * Deprecate automatic calling of AsdfFile.find_references during AsdfFile.__init__ and asdf.open [#1708] * Allow views of memmapped arrays to keep the backing mmap open to avoid segfaults [#1668] * 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. [#1667] * 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) [#1700] * Require pytest 7+ and update asdf pytest plugin to be compatible with the current development version of pytest (8.1) [#1731] * Eliminate the use of the legacy tmpdir fixture in favor of the new tmp_path fixture for temporary directory creation. [#1759] * 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 [#1757] * Only show str representation during info and search if it contains a single line (and does not fail) [#1748] * Sun Feb 11 2024 Ben Greiner <code@bnavigator.de> - Drop removed test dependencies: gwcs throws AsdfWarning about an API change in Converter gh#asdf-format/asdf#1594 - Fix some rpmlint * Sun Feb 04 2024 Dirk Müller <dmueller@suse.com> - update to 3.0.1: * Fix bug in asdftool diff for arrays within a list * 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 * Mon Oct 02 2023 Dirk Müller <dmueller@suse.com> - update to 2.15.2: * The ASDF Standard is at v1.6.0 * Add support for python 3.12 [#1641] * Fri Aug 11 2023 Ben Greiner <code@bnavigator.de> - Update to 2.15.1 * the ASDF Standard is at v1.6.0 * Drop Python 3.8 support [#1556] * Drop NumPy 1.20, 1.21 support [#1568] * Convert numpy scalars to python types during yaml encoding to handle NEP51 changes for numpy 2.0 [#1605] * Vendorize jsonschema 4.17.3 [#1591] * jsonschema vendorization - Asdf 2.15.1 includes internally a version of jsonschema 4.17.3. This inclusion was done to deal with incompatible changes in jsonschema 4.18. - Many libraries that use asdf import jsonschema to allow catching of ValidationError instances that might be raised during schema validation. Prior to asdf 2.15 this error type was not part of the public asdf API. For 2.15 and later users are expected to import ValidationError from asdf.exceptions (instead of jsonschema directly). - To further ease the transition, asdf will, when possible, use exceptions imported from any installed version of jsonschema. This means that when the asdf internal jsonschema raises a ValidationError on a system where jsonschema was separately installed, the internal jsonschema will attempt to use ValidationError from the installed version. This should allow code that catches exceptions imported from jsonschema to continue to work with no changes. However, asdf cannot guarantee compatibility with future installed jsonschema versions and users are encouraged to update their code to import ValidationError from asdf.exceptions. - Finally, asdf is temporarily keeping jsonschema as a dependency as many libraries expected this to be installed by asdf. We expect to drop this requirement soon (likely in 3.0.0) and this change might occur in a minor or even patch version. * Thu May 18 2023 Ben Greiner <code@bnavigator.de> - Update to 2.15.0 * Add AsdfProvisionalAPIWarning to warn developers of new features that may undergo breaking changes but are likely to be included as stable features (without this warning) in a future version of ASDF [#1295] * Add AsdfDeprecationWarning to AsdfFile.blocks [#1336] * Document policy for ASDF release cycle including when support for ASDF versions end. Also document dependency support policy. [#1323] * Update lower pins on numpy (per release policy), packaging, and pyyaml to ones that we can successfully build and test against. [#1360] * Provide more informative filename when failing to open a file [#1357] * Add new plugin type for custom schema validators. [#1328] * Add AsdfDeprecationWarning to asdf.types.CustomType [#1359] * Throw more useful error when provided with a path containing an extra leading slash [#1356] * Add AsdfDeprecationWarning to AsdfInFits. Support for reading and writing ASDF in fits files is being moved to stdatamodels. [#1337] * Add AsdfDeprecationWarning to asdf.resolver [#1362] * Add AsdfDeprecationWarning to asdf.tests.helpers.assert_extension_correctness [#1388] * Add AsdfDeprecationWarning to asdf.type_index [#1403] * Add warning to use of asdftool extract and remove-hdu about deprecation and impending removal [#1411] * Deprecate AsdfFile attributes that use the legacy extension api [#1417] * Add AsdfDeprecationWarning to asdf.types [#1401] * deprecate default_extensions, get_default_resolver and get_cached_asdf_extension_list in asdf.extension [#1409] * move asdf.types.format_tag to asdf.testing.helpers.format_tag [#1433] * Deprecate AsdfExtenion, AsdfExtensionList, BuiltinExtension [#1429] * Add AsdfDeprecationWarning to asdf_extensions entry point [#1361] * Deprecate asdf.tests.helpers [#1440] * respect umask when determining file permissions for written files [#1451] - Release 2.14.4 * require jsonschema<4.18 [#1487] - Release 2.14.3 * Use importlib_metadata for all python versions [#1260] * Fix issue #1268, where update could fail to clear memmaps for some files [#1269] * Bump asdf-transform-schemas version [#1278] - Release 2.14.2 * Fix issue #1256, where enum could not be used on tagged objects. [#1257] - Release 2.14.1 * Fix issue #1239, close memmap with asdf file context [#1241] - Release 2.14.0 * Update citation. [#1184] * Add search support to ~asdf.AsdfFile.schema_info. [#1187] * Add asdf.search.AsdfSearchResult support for ~asdf.AsdfFile.schema_info and ~asdf.search.AsdfSearchResult.schema_info method. [#1197] * Use forc ndarray flag to correctly test for fortran array contiguity [#1206] * Unpin jsonschema version and fix jsonschema deprecation warnings. [#1185] * Replace pkg_resources with importlib.metadata. [#1199] * Fix default validation for jsonschema 4.10+ [#1203] * Add asdf-unit-schemas as a dependency, for backwards compatibility. [#1210] * Remove stray toplevel packages docker docs and compatibility_tests from wheel [#1214] * Close files opened during a failed call to asdf.open [#1221] * Modify generic_file for fsspec compatibility [#1226] * Add fsspec http filesystem support [#1228] * Memmap whole file instead of each array [#1230] * Fix issue #1232 where array data was duplicated during resaving of a fits file [#1234] - Drop asdf-pr1185+pr1203-fix-jsonschema.patch fixed upstream - Drop asdf-pr1214-installed-packages.patch fixed upstream * Thu May 18 2023 Dirk Müller <dmueller@suse.com> - set sle15_python_module_pythons to build with newer python stack on SLE15 on SLE15 on SLE15 on SLE15 * Sat Oct 22 2022 Ben Greiner <code@bnavigator.de> - Update to 2.13.0 * The ASDF Standard is at v1.6.0 * Add ability to pull information from schema about asdf file data, using ~asdf.AsdfFile.schema_info method. [#1167] - Release 2.12.1 * Overhaul of the ASDF documentation to make it more consistent and readable. [#1142, #1152] * Update deprecated instances of abstractproperty to abstractmethod [#1148] * Move build configuration into pyproject.toml [#1149, #1155] * Pin jsonschema to below 4.10.0. [#1171] - Release 2.12.0 * Added ability to display title as a comment in using the info() functionality. [#1138] * Add ability to set asdf-standard version for schema example items. [#1143] - Add asdf-pr1185+pr1203-fix-jsonschema.patch * gh#asdf-format/asdf#1185, gh#asdf-format/asdf#1203 - Add asdf-pr1214-installed-packages.patch * gh#asdf-format/asdf#1214 * Tue Apr 26 2022 Ben Greiner <code@bnavigator.de> - Update to 2.11.1 * Update minimum astropy version to 5.0.4. [#1133] * Update minimum jsonschema version to 4.0.1. [#1105] - Collect tests from installed sitelib -- gh#pytest-dev/pytest#9765 * Sun Mar 13 2022 Ben Greiner <code@bnavigator.de> - Update to 2.10.1 * Bugfix for circular build dependency for asdf. * Fix small bug with handling multiple schema uris per tag. * Replace asdf-standard submodule with pypi package. [#1079] * Fix deprecation warnings stemming from the release of pytest 7.0.0. * Fix bug in pytest plugin when schemas are not in a directory named "schemas". - Release 2.9 * The ASDF Standard is at v1.6.0. * Fix typo in testing module __init__.py name. * Add the capability for classes to expose their contents to AsdfFile.info and AsdfFile.search via the __asdf_traverse__ method. * Drop support for Python 3.6. * Update setup.py to raise error if "git submodule update --init" has not been run. * Add ability for tags to correspond to multiple schema_uri, with an implied allOf among the schema_uris. * Add the URL of the file being parsed to SerializationContext. * Add asdf.testing.helpers module with simplified versions of test helpers previously available in asdf.tests.helpers. - Drop patches merged * asdf-pr1034-tags.patch * asdf-standard-pr289-schema.patch * Tue Dec 28 2021 Ben Greiner <code@bnavigator.de> - Add patches for working with newer gwcs and asdf-astropy * asdf-pr1034-tags.patch * asdf-standard-pr289-schema.patch * Mon Dec 13 2021 Ben Greiner <code@bnavigator.de> - Update to version 2.8.3 * Fix array compression for non-native byte order. * Fix bug in schema loading when URI is claimed by both legacy and new-style extensions. * Hide 'name' and 'version' attributes on instances of NDArrayType. * Fix use of "python" instead of "python3" in compatibility tests. - Unpin pytest<6 -- gh#asdf-format/asdf#1038 * Thu Nov 11 2021 Steve Kowalik <steven.kowalik@suse.com> - Add multibuild to avoid a build loop. * Mon Jul 19 2021 Ben Greiner <code@bnavigator.de> - Update to version 2.8.1 * Fix bug that corrupts ndarray views when a new block is added to an existing file in absence of a block index. - Release 2.8.0 * New plugin APIs for block compressors, extensions, and schemas. * New global configuration mechanism (asdf.get_config()). * Support for the asdf:// URI scheme. * Drop support for Python 3.5. * Support for ASDF Standard 1.6.0, which is available via the version argument to AsdfFile.__init__ but not yet the default. * Values that match defaults defined in schemas are no longer automatically removed from the ASDF tree. * None values are no longer removed from the tree on write. * Remove the asdf.test method and asdf.__githash__ attribute. * And more, see CHANGES.rst for details. - Update build and runtime requirements * Sat Apr 17 2021 Ben Greiner <code@bnavigator.de> - Update to version 2.7.3 * Fix bug resulting in invalid strides values for views over FITS arrays. * Add pytest plugin options to skip and xfail individual tests and xfail the unsupported ndarray-1.0.0 schema example. * Thu Feb 11 2021 Ben Greiner <code@bnavigator.de> - Update to version 2.7.2 * Fix bug causing test collection failures under Python 3.9. * Fix bug when decompressing arrays with numpy 1.20. * Replace assert statements with raise at the behest of the bandit security linter.
/etc/alternatives/asdftool /usr/bin/asdftool /usr/bin/asdftool-3.12 /usr/lib/python3.12/site-packages/asdf /usr/lib/python3.12/site-packages/asdf-3.5.0.dist-info /usr/lib/python3.12/site-packages/asdf-3.5.0.dist-info/INSTALLER /usr/lib/python3.12/site-packages/asdf-3.5.0.dist-info/LICENSE /usr/lib/python3.12/site-packages/asdf-3.5.0.dist-info/METADATA /usr/lib/python3.12/site-packages/asdf-3.5.0.dist-info/RECORD /usr/lib/python3.12/site-packages/asdf-3.5.0.dist-info/REQUESTED /usr/lib/python3.12/site-packages/asdf-3.5.0.dist-info/WHEEL /usr/lib/python3.12/site-packages/asdf-3.5.0.dist-info/entry_points.txt /usr/lib/python3.12/site-packages/asdf-3.5.0.dist-info/top_level.txt /usr/lib/python3.12/site-packages/asdf/__init__.py /usr/lib/python3.12/site-packages/asdf/__pycache__ /usr/lib/python3.12/site-packages/asdf/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_asdf.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_asdf.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_compression.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_compression.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_convenience.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_convenience.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_display.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_display.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_entry_points.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_entry_points.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_helpers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_helpers.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_node_info.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_node_info.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_version.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/_version.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/asdf.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/asdf.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/config.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/config.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/conftest.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/conftest.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/constants.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/constants.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/exceptions.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/exceptions.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/generic_io.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/generic_io.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/lazy_nodes.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/lazy_nodes.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/reference.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/reference.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/resource.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/resource.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/schema.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/schema.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/search.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/search.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/stream.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/stream.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/tagged.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/tagged.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/treeutil.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/treeutil.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/util.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/util.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/versioning.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/versioning.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/yamlutil.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/__pycache__/yamlutil.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_asdf.py /usr/lib/python3.12/site-packages/asdf/_block /usr/lib/python3.12/site-packages/asdf/_block/__init__.py /usr/lib/python3.12/site-packages/asdf/_block/__pycache__ /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/callback.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/callback.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/exceptions.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/exceptions.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/external.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/external.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/io.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/io.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/key.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/key.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/manager.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/manager.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/options.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/options.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/reader.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/reader.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/store.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/store.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/writer.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_block/__pycache__/writer.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_block/callback.py /usr/lib/python3.12/site-packages/asdf/_block/exceptions.py /usr/lib/python3.12/site-packages/asdf/_block/external.py /usr/lib/python3.12/site-packages/asdf/_block/io.py /usr/lib/python3.12/site-packages/asdf/_block/key.py /usr/lib/python3.12/site-packages/asdf/_block/manager.py /usr/lib/python3.12/site-packages/asdf/_block/options.py /usr/lib/python3.12/site-packages/asdf/_block/reader.py /usr/lib/python3.12/site-packages/asdf/_block/store.py /usr/lib/python3.12/site-packages/asdf/_block/writer.py /usr/lib/python3.12/site-packages/asdf/_compression.py /usr/lib/python3.12/site-packages/asdf/_convenience.py /usr/lib/python3.12/site-packages/asdf/_core /usr/lib/python3.12/site-packages/asdf/_core/__init__.py /usr/lib/python3.12/site-packages/asdf/_core/__pycache__ /usr/lib/python3.12/site-packages/asdf/_core/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/__pycache__/_extensions.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/__pycache__/_extensions.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/__pycache__/_integration.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/__pycache__/_integration.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters /usr/lib/python3.12/site-packages/asdf/_core/_converters/__init__.py /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__ /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/complex.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/complex.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/constant.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/constant.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/external_reference.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/external_reference.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/integer.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/integer.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/ndarray.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/ndarray.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/reference.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/reference.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/tree.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/__pycache__/tree.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/_converters/complex.py /usr/lib/python3.12/site-packages/asdf/_core/_converters/constant.py /usr/lib/python3.12/site-packages/asdf/_core/_converters/external_reference.py /usr/lib/python3.12/site-packages/asdf/_core/_converters/integer.py /usr/lib/python3.12/site-packages/asdf/_core/_converters/ndarray.py /usr/lib/python3.12/site-packages/asdf/_core/_converters/reference.py /usr/lib/python3.12/site-packages/asdf/_core/_converters/tree.py /usr/lib/python3.12/site-packages/asdf/_core/_extensions.py /usr/lib/python3.12/site-packages/asdf/_core/_integration.py /usr/lib/python3.12/site-packages/asdf/_core/_validators /usr/lib/python3.12/site-packages/asdf/_core/_validators/__init__.py /usr/lib/python3.12/site-packages/asdf/_core/_validators/__pycache__ /usr/lib/python3.12/site-packages/asdf/_core/_validators/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/_validators/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/_validators/__pycache__/ndarray.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_core/_validators/__pycache__/ndarray.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_core/_validators/ndarray.py /usr/lib/python3.12/site-packages/asdf/_display.py /usr/lib/python3.12/site-packages/asdf/_entry_points.py /usr/lib/python3.12/site-packages/asdf/_extern /usr/lib/python3.12/site-packages/asdf/_extern/__init__.py /usr/lib/python3.12/site-packages/asdf/_extern/__pycache__ /usr/lib/python3.12/site-packages/asdf/_extern/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_extern/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_extern/__pycache__/atomicfile.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_extern/__pycache__/atomicfile.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_extern/atomicfile.py /usr/lib/python3.12/site-packages/asdf/_helpers.py /usr/lib/python3.12/site-packages/asdf/_jsonschema /usr/lib/python3.12/site-packages/asdf/_jsonschema/COPYING /usr/lib/python3.12/site-packages/asdf/_jsonschema/README.md /usr/lib/python3.12/site-packages/asdf/_jsonschema/__init__.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__ /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/_format.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/_format.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/_legacy_validators.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/_legacy_validators.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/_types.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/_types.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/_utils.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/_utils.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/_validators.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/_validators.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/conftest.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/conftest.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/exceptions.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/exceptions.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/protocols.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/protocols.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/validators.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/__pycache__/validators.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/_format.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/_legacy_validators.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/_types.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/_utils.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/_validators.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/conftest.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/exceptions.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/CONTRIBUTING.md /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/LICENSE /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/README.md /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/bin /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/bin/jsonschema_suite /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/package.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/baseUriChange /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/baseUriChange/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/baseUriChangeFolder /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/baseUriChangeFolder/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/baseUriChangeFolderInSubschema /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/baseUriChangeFolderInSubschema/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/different-id-ref-string.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/baseUriChange /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/baseUriChange/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/baseUriChangeFolder /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/baseUriChangeFolder/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/baseUriChangeFolderInSubschema /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/baseUriChangeFolderInSubschema/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/extendible-dynamic-ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/format-assertion-false.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/format-assertion-true.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/integer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/locationIndependentIdentifier.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/metaschema-no-validation.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/name-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/nested /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/nested/foo-ref-string.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/nested/string.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/ref-and-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/subSchemas-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/subSchemas.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft-next/tree.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09 /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/baseUriChange /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/baseUriChange/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/baseUriChangeFolder /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/baseUriChangeFolder/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/baseUriChangeFolderInSubschema /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/baseUriChangeFolderInSubschema/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/dependentRequired.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/extendible-dynamic-ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/ignore-prefixItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/integer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/locationIndependentIdentifier.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/metaschema-no-validation.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/name-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/nested /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/nested/foo-ref-string.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/nested/string.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/ref-and-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/subSchemas-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/subSchemas.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2019-09/tree.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12 /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/baseUriChange /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/baseUriChange/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/baseUriChangeFolder /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/baseUriChangeFolder/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/baseUriChangeFolderInSubschema /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/baseUriChangeFolderInSubschema/folderInteger.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/extendible-dynamic-ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/format-assertion-false.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/format-assertion-true.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/integer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/locationIndependentIdentifier.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/metaschema-no-validation.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/name-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/nested /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/nested/foo-ref-string.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/nested/string.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/prefixItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/ref-and-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/subSchemas-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/subSchemas.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft2020-12/tree.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft7 /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/draft7/ignore-dependentRequired.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/extendible-dynamic-ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/integer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/locationIndependentIdentifier.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/locationIndependentIdentifierDraft4.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/locationIndependentIdentifierPre2019.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/name-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/name.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/nested /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/nested-absolute-ref-to-string.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/nested/foo-ref-string.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/nested/string.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/ref-and-definitions.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/ref-and-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/subSchemas-defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/subSchemas.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/tree.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/remotes/urn-ref-string.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/test-schema.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/additionalProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/allOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/anchor.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/anyOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/boolean_schema.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/const.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/contains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/content.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/default.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/dependentRequired.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/dependentSchemas.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/dynamicRef.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/enum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/exclusiveMaximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/exclusiveMinimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/format.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/id.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/if-then-else.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/infinite-loop-detection.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/items.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/maxContains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/maxItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/maxLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/maxProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/maximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/minContains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/minItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/minLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/minProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/minimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/multipleOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/not.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/oneOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/bignum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/dependencies-compatibility.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/ecmascript-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/float-overflow.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format-assertion.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/date-time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/date.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/duration.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/idn-email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/idn-hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/ipv4.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/ipv6.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/iri-reference.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/iri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/json-pointer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/relative-json-pointer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/uri-reference.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/uri-template.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/uri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/format/uuid.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/non-bmp-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/optional/refOfUnknownKeyword.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/pattern.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/patternProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/prefixItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/properties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/propertyDependencies.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/propertyNames.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/refRemote.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/required.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/type.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/unevaluatedItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/unevaluatedProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/uniqueItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/unknownKeyword.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft-next/vocabulary.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09 /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/additionalItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/additionalProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/allOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/anchor.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/anyOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/boolean_schema.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/const.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/contains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/content.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/default.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/dependentRequired.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/dependentSchemas.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/enum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/exclusiveMaximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/exclusiveMinimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/format.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/id.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/if-then-else.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/infinite-loop-detection.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/items.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/maxContains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/maxItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/maxLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/maxProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/maximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/minContains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/minItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/minLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/minProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/minimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/multipleOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/not.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/oneOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/bignum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/cross-draft.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/dependencies-compatibility.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/ecmascript-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/float-overflow.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/date-time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/date.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/duration.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/idn-email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/idn-hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/ipv4.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/ipv6.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/iri-reference.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/iri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/json-pointer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/relative-json-pointer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/unknown.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/uri-reference.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/uri-template.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/uri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/format/uuid.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/no-schema.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/non-bmp-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/optional/refOfUnknownKeyword.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/pattern.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/patternProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/properties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/propertyNames.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/recursiveRef.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/refRemote.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/required.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/type.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/unevaluatedItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/unevaluatedProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/uniqueItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/unknownKeyword.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2019-09/vocabulary.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12 /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/additionalProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/allOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/anchor.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/anyOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/boolean_schema.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/const.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/contains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/content.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/default.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/dependentRequired.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/dependentSchemas.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/dynamicRef.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/enum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/exclusiveMaximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/exclusiveMinimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/format.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/id.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/if-then-else.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/infinite-loop-detection.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/items.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/maxContains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/maxItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/maxLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/maxProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/maximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/minContains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/minItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/minLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/minProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/minimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/multipleOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/not.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/oneOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/bignum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/cross-draft.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/dependencies-compatibility.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/ecmascript-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/float-overflow.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format-assertion.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/date-time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/date.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/duration.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/idn-email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/idn-hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/ipv4.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/ipv6.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/iri-reference.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/iri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/json-pointer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/relative-json-pointer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/unknown.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/uri-reference.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/uri-template.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/uri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/format/uuid.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/no-schema.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/non-bmp-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/optional/refOfUnknownKeyword.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/pattern.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/patternProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/prefixItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/properties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/propertyNames.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/refRemote.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/required.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/type.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/unevaluatedItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/unevaluatedProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/uniqueItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/unknownKeyword.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft2020-12/vocabulary.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3 /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/additionalItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/additionalProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/default.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/dependencies.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/disallow.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/divisibleBy.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/enum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/extends.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/format.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/infinite-loop-detection.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/items.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/maxItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/maxLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/maximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/minItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/minLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/minimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/bignum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/ecmascript-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/format /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/format/color.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/format/date-time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/format/date.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/format/email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/format/host-name.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/format/ip-address.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/format/ipv6.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/format/regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/format/time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/format/uri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/non-bmp-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/optional/zeroTerminatedFloats.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/pattern.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/patternProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/properties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/refRemote.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/required.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/type.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft3/uniqueItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4 /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/additionalItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/additionalProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/allOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/anyOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/default.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/definitions.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/dependencies.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/enum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/format.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/id.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/infinite-loop-detection.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/items.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/maxItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/maxLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/maxProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/maximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/minItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/minLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/minProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/minimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/multipleOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/not.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/oneOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/bignum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/ecmascript-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/float-overflow.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/format /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/format/date-time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/format/email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/format/hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/format/ipv4.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/format/ipv6.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/format/unknown.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/format/uri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/non-bmp-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/optional/zeroTerminatedFloats.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/pattern.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/patternProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/properties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/refRemote.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/required.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/type.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft4/uniqueItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6 /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/additionalItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/additionalProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/allOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/anyOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/boolean_schema.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/const.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/contains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/default.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/definitions.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/dependencies.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/enum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/exclusiveMaximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/exclusiveMinimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/format.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/id.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/infinite-loop-detection.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/items.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/maxItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/maxLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/maxProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/maximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/minItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/minLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/minProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/minimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/multipleOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/not.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/oneOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/bignum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/ecmascript-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/float-overflow.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/format /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/format/date-time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/format/email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/format/hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/format/ipv4.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/format/ipv6.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/format/json-pointer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/format/unknown.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/format/uri-reference.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/format/uri-template.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/format/uri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/optional/non-bmp-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/pattern.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/patternProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/properties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/propertyNames.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/refRemote.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/required.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/type.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/uniqueItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft6/unknownKeyword.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7 /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/additionalItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/additionalProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/allOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/anyOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/boolean_schema.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/const.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/contains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/default.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/definitions.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/dependencies.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/enum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/exclusiveMaximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/exclusiveMinimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/format.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/id.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/if-then-else.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/infinite-loop-detection.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/items.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/maxItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/maxLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/maxProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/maximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/minItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/minLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/minProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/minimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/multipleOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/not.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/oneOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/bignum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/content.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/cross-draft.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/ecmascript-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/float-overflow.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/date-time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/date.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/idn-email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/idn-hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/ipv4.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/ipv6.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/iri-reference.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/iri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/json-pointer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/relative-json-pointer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/unknown.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/uri-reference.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/uri-template.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/format/uri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/optional/non-bmp-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/pattern.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/patternProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/properties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/propertyNames.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/refRemote.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/required.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/type.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/uniqueItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/draft7/unknownKeyword.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/additionalProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/allOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/anchor.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/anyOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/boolean_schema.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/const.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/contains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/content.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/default.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/defs.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/dependentRequired.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/dependentSchemas.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/dynamicRef.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/enum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/exclusiveMaximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/exclusiveMinimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/format.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/id.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/if-then-else.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/infinite-loop-detection.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/items.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/maxContains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/maxItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/maxLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/maxProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/maximum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/minContains.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/minItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/minLength.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/minProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/minimum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/multipleOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/not.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/oneOf.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/bignum.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/cross-draft.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/dependencies-compatibility.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/ecmascript-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/float-overflow.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format-assertion.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/date-time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/date.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/duration.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/idn-email.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/idn-hostname.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/ipv4.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/ipv6.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/iri-reference.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/iri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/json-pointer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/relative-json-pointer.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/time.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/unknown.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/uri-reference.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/uri-template.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/uri.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/format/uuid.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/no-schema.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/non-bmp-regex.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/optional/refOfUnknownKeyword.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/pattern.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/patternProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/prefixItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/properties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/propertyNames.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/ref.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/refRemote.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/required.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/type.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/unevaluatedItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/unevaluatedProperties.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/uniqueItems.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/unknownKeyword.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tests/latest/vocabulary.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/json/tox.ini /usr/lib/python3.12/site-packages/asdf/_jsonschema/protocols.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/draft2019-09.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/draft2020-12.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/draft3.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/draft4.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/draft6.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/draft7.json /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2019-09 /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2019-09/applicator /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2019-09/content /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2019-09/core /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2019-09/meta-data /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2019-09/validation /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2020-12 /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2020-12/applicator /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2020-12/content /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2020-12/core /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2020-12/format /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2020-12/format-annotation /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2020-12/format-assertion /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2020-12/meta-data /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2020-12/unevaluated /usr/lib/python3.12/site-packages/asdf/_jsonschema/schemas/vocabularies/draft2020-12/validation /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__init__.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__ /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/_helpers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/_helpers.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/_suite.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/_suite.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_deprecations.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_deprecations.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_exceptions.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_exceptions.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_format.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_format.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_jsonschema_test_suite.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_jsonschema_test_suite.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_types.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_types.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_utils.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_utils.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_validators.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/__pycache__/test_validators.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/_helpers.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/_suite.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/test_deprecations.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/test_exceptions.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/test_format.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/test_jsonschema_test_suite.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/test_types.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/test_utils.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/tests/test_validators.py /usr/lib/python3.12/site-packages/asdf/_jsonschema/validators.py /usr/lib/python3.12/site-packages/asdf/_node_info.py /usr/lib/python3.12/site-packages/asdf/_tests /usr/lib/python3.12/site-packages/asdf/_tests/__init__.py /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__ /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/_helpers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/_helpers.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/conftest.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/conftest.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/httpserver.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/httpserver.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_api.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_api.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_array_blocks.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_array_blocks.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_asdf.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_asdf.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_block_converter.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_block_converter.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_compression.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_compression.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_config.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_config.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_deprecated.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_deprecated.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_entry_points.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_entry_points.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_extension.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_extension.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_file_format.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_file_format.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_generic_io.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_generic_io.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_history.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_history.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_info.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_info.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_integration.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_integration.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_lazy_nodes.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_lazy_nodes.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_reference.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_reference.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_resource.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_resource.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_schema.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_schema.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_search.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_search.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_serialization_context.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_serialization_context.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_stream.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_stream.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_tagged.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_tagged.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_testing_helpers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_testing_helpers.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_treeutil.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_treeutil.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_types.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_types.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_util.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_util.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_versioning.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_versioning.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_yaml.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/__pycache__/test_yaml.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block /usr/lib/python3.12/site-packages/asdf/_tests/_block/__init__.py /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__ /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_callback.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_callback.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_external.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_external.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_io.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_io.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_key.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_key.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_manager.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_manager.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_options.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_options.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_reader.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_reader.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_store.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_store.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_writer.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/__pycache__/test_writer.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_block/test_callback.py /usr/lib/python3.12/site-packages/asdf/_tests/_block/test_external.py /usr/lib/python3.12/site-packages/asdf/_tests/_block/test_io.py /usr/lib/python3.12/site-packages/asdf/_tests/_block/test_key.py /usr/lib/python3.12/site-packages/asdf/_tests/_block/test_manager.py /usr/lib/python3.12/site-packages/asdf/_tests/_block/test_options.py /usr/lib/python3.12/site-packages/asdf/_tests/_block/test_reader.py /usr/lib/python3.12/site-packages/asdf/_tests/_block/test_store.py /usr/lib/python3.12/site-packages/asdf/_tests/_block/test_writer.py /usr/lib/python3.12/site-packages/asdf/_tests/_helpers.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__ /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1013.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1013.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1334.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1334.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1505.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1505.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1523.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1523.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1525.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1525.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1526.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1526.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1530.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1530.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1538.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1538.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1539.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1539.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1540.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1540.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1541.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1541.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1542.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1542.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1553.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1553.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1558.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1558.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1715.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1715.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1738.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/__pycache__/test_1738.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1013.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1334.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1505.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1523.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1525.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1526.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1530.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1538.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1539.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1540.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1541.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1542.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1553.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1558.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1715.py /usr/lib/python3.12/site-packages/asdf/_tests/_regtests/test_1738.py /usr/lib/python3.12/site-packages/asdf/_tests/commands /usr/lib/python3.12/site-packages/asdf/_tests/commands/__init__.py /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__ /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_defragment.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_defragment.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_diff.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_diff.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_edit.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_edit.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_exploded.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_exploded.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_extension.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_extension.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_info.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_info.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_main.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_main.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_tags.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_tags.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_to_yaml.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/__pycache__/test_to_yaml.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/commands/test_defragment.py /usr/lib/python3.12/site-packages/asdf/_tests/commands/test_diff.py /usr/lib/python3.12/site-packages/asdf/_tests/commands/test_edit.py /usr/lib/python3.12/site-packages/asdf/_tests/commands/test_exploded.py /usr/lib/python3.12/site-packages/asdf/_tests/commands/test_extension.py /usr/lib/python3.12/site-packages/asdf/_tests/commands/test_info.py /usr/lib/python3.12/site-packages/asdf/_tests/commands/test_main.py /usr/lib/python3.12/site-packages/asdf/_tests/commands/test_tags.py /usr/lib/python3.12/site-packages/asdf/_tests/commands/test_to_yaml.py /usr/lib/python3.12/site-packages/asdf/_tests/conftest.py /usr/lib/python3.12/site-packages/asdf/_tests/core /usr/lib/python3.12/site-packages/asdf/_tests/core/__init__.py /usr/lib/python3.12/site-packages/asdf/_tests/core/__pycache__ /usr/lib/python3.12/site-packages/asdf/_tests/core/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__init__.py /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__pycache__ /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__pycache__/test_complex.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__pycache__/test_complex.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__pycache__/test_constant.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__pycache__/test_constant.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__pycache__/test_external_reference.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__pycache__/test_external_reference.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__pycache__/test_tree.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/__pycache__/test_tree.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/test_complex.py /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/test_constant.py /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/test_external_reference.py /usr/lib/python3.12/site-packages/asdf/_tests/core/_converters/test_tree.py /usr/lib/python3.12/site-packages/asdf/_tests/core/tests /usr/lib/python3.12/site-packages/asdf/_tests/core/tests/__init__.py /usr/lib/python3.12/site-packages/asdf/_tests/core/tests/__pycache__ /usr/lib/python3.12/site-packages/asdf/_tests/core/tests/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/tests/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/tests/__pycache__/test_integration.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/tests/__pycache__/test_integration.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/core/tests/test_integration.py /usr/lib/python3.12/site-packages/asdf/_tests/data /usr/lib/python3.12/site-packages/asdf/_tests/data/__init__.py /usr/lib/python3.12/site-packages/asdf/_tests/data/__pycache__ /usr/lib/python3.12/site-packages/asdf/_tests/data/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/data/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/data/block0.asdf /usr/lib/python3.12/site-packages/asdf/_tests/data/block1.asdf /usr/lib/python3.12/site-packages/asdf/_tests/data/blocks.diff /usr/lib/python3.12/site-packages/asdf/_tests/data/complex-42.0.0.yaml /usr/lib/python3.12/site-packages/asdf/_tests/data/custom-1.0.0.yaml /usr/lib/python3.12/site-packages/asdf/_tests/data/custom_schema.yaml /usr/lib/python3.12/site-packages/asdf/_tests/data/custom_schema_definitions.yaml /usr/lib/python3.12/site-packages/asdf/_tests/data/custom_schema_external_ref.yaml /usr/lib/python3.12/site-packages/asdf/_tests/data/example_schema.json /usr/lib/python3.12/site-packages/asdf/_tests/data/fraction-1.0.0.yaml /usr/lib/python3.12/site-packages/asdf/_tests/data/fraction_with_inverse-1.0.0.yaml /usr/lib/python3.12/site-packages/asdf/_tests/data/fractional_2d_coord-1.0.0.yaml /usr/lib/python3.12/site-packages/asdf/_tests/data/frames.diff /usr/lib/python3.12/site-packages/asdf/_tests/data/frames0.asdf /usr/lib/python3.12/site-packages/asdf/_tests/data/frames1.asdf /usr/lib/python3.12/site-packages/asdf/_tests/data/frames_ignore_asdf_library.diff /usr/lib/python3.12/site-packages/asdf/_tests/data/frames_ignore_both.diff /usr/lib/python3.12/site-packages/asdf/_tests/data/frames_ignore_reference_frame.diff /usr/lib/python3.12/site-packages/asdf/_tests/data/frames_minimal.diff /usr/lib/python3.12/site-packages/asdf/_tests/data/missing-1.1.0.yaml /usr/lib/python3.12/site-packages/asdf/_tests/data/ndarray0.asdf /usr/lib/python3.12/site-packages/asdf/_tests/data/ndarray1.asdf /usr/lib/python3.12/site-packages/asdf/_tests/data/ndarray_in_list.diff /usr/lib/python3.12/site-packages/asdf/_tests/data/ndarray_in_list0.asdf /usr/lib/python3.12/site-packages/asdf/_tests/data/ndarray_in_list1.asdf /usr/lib/python3.12/site-packages/asdf/_tests/data/ndarrays.diff /usr/lib/python3.12/site-packages/asdf/_tests/data/self_referencing-1.0.0.yaml /usr/lib/python3.12/site-packages/asdf/_tests/data/simple_inline_array.diff /usr/lib/python3.12/site-packages/asdf/_tests/data/simple_inline_array0.asdf /usr/lib/python3.12/site-packages/asdf/_tests/data/simple_inline_array1.asdf /usr/lib/python3.12/site-packages/asdf/_tests/httpserver.py /usr/lib/python3.12/site-packages/asdf/_tests/tags /usr/lib/python3.12/site-packages/asdf/_tests/tags/__init__.py /usr/lib/python3.12/site-packages/asdf/_tests/tags/__pycache__ /usr/lib/python3.12/site-packages/asdf/_tests/tags/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/tags/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/tags/core /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/__init__.py /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/__pycache__ /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/tests /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/tests/__init__.py /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/tests/__pycache__ /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/tests/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/tests/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/tests/__pycache__/test_integer.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/tests/__pycache__/test_integer.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/tests/__pycache__/test_ndarray.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/tests/__pycache__/test_ndarray.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/tests/test_integer.py /usr/lib/python3.12/site-packages/asdf/_tests/tags/core/tests/test_ndarray.py /usr/lib/python3.12/site-packages/asdf/_tests/test_api.py /usr/lib/python3.12/site-packages/asdf/_tests/test_array_blocks.py /usr/lib/python3.12/site-packages/asdf/_tests/test_asdf.py /usr/lib/python3.12/site-packages/asdf/_tests/test_block_converter.py /usr/lib/python3.12/site-packages/asdf/_tests/test_compression.py /usr/lib/python3.12/site-packages/asdf/_tests/test_config.py /usr/lib/python3.12/site-packages/asdf/_tests/test_deprecated.py /usr/lib/python3.12/site-packages/asdf/_tests/test_entry_points.py /usr/lib/python3.12/site-packages/asdf/_tests/test_extension.py /usr/lib/python3.12/site-packages/asdf/_tests/test_file_format.py /usr/lib/python3.12/site-packages/asdf/_tests/test_generic_io.py /usr/lib/python3.12/site-packages/asdf/_tests/test_history.py /usr/lib/python3.12/site-packages/asdf/_tests/test_info.py /usr/lib/python3.12/site-packages/asdf/_tests/test_integration.py /usr/lib/python3.12/site-packages/asdf/_tests/test_lazy_nodes.py /usr/lib/python3.12/site-packages/asdf/_tests/test_reference.py /usr/lib/python3.12/site-packages/asdf/_tests/test_resource.py /usr/lib/python3.12/site-packages/asdf/_tests/test_schema.py /usr/lib/python3.12/site-packages/asdf/_tests/test_search.py /usr/lib/python3.12/site-packages/asdf/_tests/test_serialization_context.py /usr/lib/python3.12/site-packages/asdf/_tests/test_stream.py /usr/lib/python3.12/site-packages/asdf/_tests/test_tagged.py /usr/lib/python3.12/site-packages/asdf/_tests/test_testing_helpers.py /usr/lib/python3.12/site-packages/asdf/_tests/test_treeutil.py /usr/lib/python3.12/site-packages/asdf/_tests/test_types.py /usr/lib/python3.12/site-packages/asdf/_tests/test_util.py /usr/lib/python3.12/site-packages/asdf/_tests/test_versioning.py /usr/lib/python3.12/site-packages/asdf/_tests/test_yaml.py /usr/lib/python3.12/site-packages/asdf/_version.py /usr/lib/python3.12/site-packages/asdf/asdf.py /usr/lib/python3.12/site-packages/asdf/commands /usr/lib/python3.12/site-packages/asdf/commands/__init__.py /usr/lib/python3.12/site-packages/asdf/commands/__pycache__ /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/defragment.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/defragment.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/diff.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/diff.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/edit.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/edit.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/exploded.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/exploded.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/extension.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/extension.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/info.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/info.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/main.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/main.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/tags.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/tags.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/to_yaml.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/commands/__pycache__/to_yaml.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/commands/defragment.py /usr/lib/python3.12/site-packages/asdf/commands/diff.py /usr/lib/python3.12/site-packages/asdf/commands/edit.py /usr/lib/python3.12/site-packages/asdf/commands/exploded.py /usr/lib/python3.12/site-packages/asdf/commands/extension.py /usr/lib/python3.12/site-packages/asdf/commands/info.py /usr/lib/python3.12/site-packages/asdf/commands/main.py /usr/lib/python3.12/site-packages/asdf/commands/tags.py /usr/lib/python3.12/site-packages/asdf/commands/to_yaml.py /usr/lib/python3.12/site-packages/asdf/config.py /usr/lib/python3.12/site-packages/asdf/conftest.py /usr/lib/python3.12/site-packages/asdf/constants.py /usr/lib/python3.12/site-packages/asdf/exceptions.py /usr/lib/python3.12/site-packages/asdf/extension /usr/lib/python3.12/site-packages/asdf/extension/__init__.py /usr/lib/python3.12/site-packages/asdf/extension/__pycache__ /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_compressor.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_compressor.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_converter.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_converter.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_extension.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_extension.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_manager.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_manager.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_manifest.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_manifest.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_serialization_context.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_serialization_context.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_tag.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_tag.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_validator.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/extension/__pycache__/_validator.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/extension/_compressor.py /usr/lib/python3.12/site-packages/asdf/extension/_converter.py /usr/lib/python3.12/site-packages/asdf/extension/_extension.py /usr/lib/python3.12/site-packages/asdf/extension/_manager.py /usr/lib/python3.12/site-packages/asdf/extension/_manifest.py /usr/lib/python3.12/site-packages/asdf/extension/_serialization_context.py /usr/lib/python3.12/site-packages/asdf/extension/_tag.py /usr/lib/python3.12/site-packages/asdf/extension/_validator.py /usr/lib/python3.12/site-packages/asdf/generic_io.py /usr/lib/python3.12/site-packages/asdf/lazy_nodes.py /usr/lib/python3.12/site-packages/asdf/reference.py /usr/lib/python3.12/site-packages/asdf/resource.py /usr/lib/python3.12/site-packages/asdf/schema.py /usr/lib/python3.12/site-packages/asdf/search.py /usr/lib/python3.12/site-packages/asdf/stream.py /usr/lib/python3.12/site-packages/asdf/tagged.py /usr/lib/python3.12/site-packages/asdf/tags /usr/lib/python3.12/site-packages/asdf/tags/__init__.py /usr/lib/python3.12/site-packages/asdf/tags/__pycache__ /usr/lib/python3.12/site-packages/asdf/tags/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/tags/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/tags/core /usr/lib/python3.12/site-packages/asdf/tags/core/__init__.py /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__ /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/constant.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/constant.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/external_reference.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/external_reference.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/integer.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/integer.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/ndarray.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/ndarray.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/stream.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/__pycache__/stream.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/tags/core/constant.py /usr/lib/python3.12/site-packages/asdf/tags/core/external_reference.py /usr/lib/python3.12/site-packages/asdf/tags/core/integer.py /usr/lib/python3.12/site-packages/asdf/tags/core/ndarray.py /usr/lib/python3.12/site-packages/asdf/tags/core/stream.py /usr/lib/python3.12/site-packages/asdf/testing /usr/lib/python3.12/site-packages/asdf/testing/__init__.py /usr/lib/python3.12/site-packages/asdf/testing/__pycache__ /usr/lib/python3.12/site-packages/asdf/testing/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/testing/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/testing/__pycache__/helpers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/asdf/testing/__pycache__/helpers.cpython-312.pyc /usr/lib/python3.12/site-packages/asdf/testing/helpers.py /usr/lib/python3.12/site-packages/asdf/treeutil.py /usr/lib/python3.12/site-packages/asdf/util.py /usr/lib/python3.12/site-packages/asdf/versioning.py /usr/lib/python3.12/site-packages/asdf/yamlutil.py /usr/lib/python3.12/site-packages/pytest_asdf /usr/lib/python3.12/site-packages/pytest_asdf/__init__.py /usr/lib/python3.12/site-packages/pytest_asdf/__pycache__ /usr/lib/python3.12/site-packages/pytest_asdf/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/pytest_asdf/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/pytest_asdf/__pycache__/plugin.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/pytest_asdf/__pycache__/plugin.cpython-312.pyc /usr/lib/python3.12/site-packages/pytest_asdf/plugin.py /usr/share/doc/packages/python312-asdf /usr/share/doc/packages/python312-asdf/CHANGES.rst /usr/share/doc/packages/python312-asdf/README.rst /usr/share/licenses/python312-asdf /usr/share/licenses/python312-asdf/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Sat Jan 4 23:43:41 2025