python-dwca-reader 0.17.0__tar.gz → 0.17.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/CHANGES.txt +16 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/PKG-INFO +3 -1
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/star_record.py +1 -1
- python_dwca_reader-0.17.1/dwca/version.py +1 -0
- python_dwca_reader-0.17.1/pyproject.toml +14 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/python_dwca_reader.egg-info/PKG-INFO +3 -1
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/python_dwca_reader.egg-info/SOURCES.txt +1 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/setup.py +1 -0
- python_dwca_reader-0.17.0/dwca/version.py +0 -1
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/AUTHORS +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/LICENSE.txt +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/MANIFEST.in +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/README.rst +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/code_of_conduct.txt +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/__init__.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/darwincore/__init__.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/darwincore/build_dc_terms_list.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/darwincore/terms.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/darwincore/utils.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/descriptors.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/exceptions.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/files.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/helpers.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/read.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/rows.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/__init__.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/archive_builder.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/helpers.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_characterization.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_datafile.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_descriptors.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_dwcareader.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_rows.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_star_record.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/vendor.py +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/python_dwca_reader.egg-info/dependency_links.txt +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/python_dwca_reader.egg-info/top_level.txt +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/requirements-dev.txt +0 -0
- {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/setup.cfg +0 -0
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
v0.17.1 (2026-07-28)
|
|
2
|
+
--------------------
|
|
3
|
+
|
|
4
|
+
No library changes: this release exists so the packaging and documentation fixes below are
|
|
5
|
+
carried by a tag, since Read the Docs builds `stable` from the most recent one.
|
|
6
|
+
|
|
7
|
+
- Fixed: the Read the Docs build failed with "No module named 'pkg_resources'". The docs
|
|
8
|
+
requirements pinned Sphinx 2.2.0, which imports pkg_resources, and setuptools removed it in
|
|
9
|
+
81.0. Only the two direct documentation dependencies are pinned now, with lower bounds.
|
|
10
|
+
- Fixed: the docstring of dwca.star_record.StarRecordIterator contained invalid
|
|
11
|
+
reStructuredText, which surfaced as a warning once v0.17.0 added the module to the API
|
|
12
|
+
reference.
|
|
13
|
+
- Packaging: pyproject.toml now declares the build backend, so builds resolve setuptools in
|
|
14
|
+
an isolated environment. Building v0.17.0 with an older setuptools produced an sdist
|
|
15
|
+
filename PyPI rejects.
|
|
16
|
+
|
|
1
17
|
v0.17.0 (2026-07-28)
|
|
2
18
|
--------------------
|
|
3
19
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-dwca-reader
|
|
3
|
-
Version: 0.17.
|
|
3
|
+
Version: 0.17.1
|
|
4
4
|
Summary: A simple Python package to read Darwin Core Archive (DwC-A) files.
|
|
5
5
|
Home-page: https://github.com/BelgianBiodiversityPlatform/python-dwca-reader
|
|
6
6
|
Author: Nicolas Noé - Belgian Biodiversity Platform
|
|
@@ -15,12 +15,14 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
16
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
17
17
|
Requires-Python: >=3.8
|
|
18
|
+
Description-Content-Type: text/x-rst
|
|
18
19
|
License-File: LICENSE.txt
|
|
19
20
|
License-File: AUTHORS
|
|
20
21
|
Dynamic: author
|
|
21
22
|
Dynamic: author-email
|
|
22
23
|
Dynamic: classifier
|
|
23
24
|
Dynamic: description
|
|
25
|
+
Dynamic: description-content-type
|
|
24
26
|
Dynamic: home-page
|
|
25
27
|
Dynamic: license
|
|
26
28
|
Dynamic: license-file
|
|
@@ -6,7 +6,7 @@ import itertools
|
|
|
6
6
|
class StarRecordIterator(object):
|
|
7
7
|
"""Object used to iterate over multiple DWCA-files joined on the coreid
|
|
8
8
|
|
|
9
|
-
:param files_to_join: a list of the
|
|
9
|
+
:param files_to_join: a list of the :class:`dwca.files.CSVDataFile` objects to join.
|
|
10
10
|
May or may not include the core file (the core is not treated in a special way)
|
|
11
11
|
:param how: indicates the type of join. "inner" and "outer" correspond vaguely to
|
|
12
12
|
inner and full joins. The outer join includes rows that don't match on all files,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.17.1"
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Declaring the build backend makes builds reproducible: `python -m build` resolves these
|
|
2
|
+
# requirements in an isolated environment instead of using whatever setuptools happens to be
|
|
3
|
+
# first on PATH.
|
|
4
|
+
#
|
|
5
|
+
# The version floor is not arbitrary. setuptools 69.3 is where sdist filenames became
|
|
6
|
+
# PEP 625 normalised ("python_dwca_reader-X.Y.Z.tar.gz" rather than "python-dwca-reader-..."),
|
|
7
|
+
# and PyPI now rejects the old form outright. Building 0.17.0 with an older setuptools
|
|
8
|
+
# produced an sdist the upload refused.
|
|
9
|
+
#
|
|
10
|
+
# Package metadata deliberately stays in setup.py for now; this file only pins how the build
|
|
11
|
+
# happens, not what is built.
|
|
12
|
+
[build-system]
|
|
13
|
+
requires = ["setuptools>=69.3", "wheel"]
|
|
14
|
+
build-backend = "setuptools.build_meta"
|
{python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/python_dwca_reader.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-dwca-reader
|
|
3
|
-
Version: 0.17.
|
|
3
|
+
Version: 0.17.1
|
|
4
4
|
Summary: A simple Python package to read Darwin Core Archive (DwC-A) files.
|
|
5
5
|
Home-page: https://github.com/BelgianBiodiversityPlatform/python-dwca-reader
|
|
6
6
|
Author: Nicolas Noé - Belgian Biodiversity Platform
|
|
@@ -15,12 +15,14 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
16
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
17
17
|
Requires-Python: >=3.8
|
|
18
|
+
Description-Content-Type: text/x-rst
|
|
18
19
|
License-File: LICENSE.txt
|
|
19
20
|
License-File: AUTHORS
|
|
20
21
|
Dynamic: author
|
|
21
22
|
Dynamic: author-email
|
|
22
23
|
Dynamic: classifier
|
|
23
24
|
Dynamic: description
|
|
25
|
+
Dynamic: description-content-type
|
|
24
26
|
Dynamic: home-page
|
|
25
27
|
Dynamic: license
|
|
26
28
|
Dynamic: license-file
|
|
@@ -12,6 +12,7 @@ setup(
|
|
|
12
12
|
license="BSD licence, see LICENCE.txt",
|
|
13
13
|
description="A simple Python package to read Darwin Core Archive (DwC-A) files.",
|
|
14
14
|
long_description=open("README.rst").read(),
|
|
15
|
+
long_description_content_type="text/x-rst",
|
|
15
16
|
python_requires=">=3.8",
|
|
16
17
|
classifiers=[
|
|
17
18
|
"Programming Language :: Python :: 3",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.17.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/darwincore/build_dc_terms_list.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/python_dwca_reader.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|