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.
Files changed (39) hide show
  1. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/CHANGES.txt +16 -0
  2. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/PKG-INFO +3 -1
  3. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/star_record.py +1 -1
  4. python_dwca_reader-0.17.1/dwca/version.py +1 -0
  5. python_dwca_reader-0.17.1/pyproject.toml +14 -0
  6. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/python_dwca_reader.egg-info/PKG-INFO +3 -1
  7. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/python_dwca_reader.egg-info/SOURCES.txt +1 -0
  8. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/setup.py +1 -0
  9. python_dwca_reader-0.17.0/dwca/version.py +0 -1
  10. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/AUTHORS +0 -0
  11. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/LICENSE.txt +0 -0
  12. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/MANIFEST.in +0 -0
  13. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/README.rst +0 -0
  14. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/code_of_conduct.txt +0 -0
  15. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/__init__.py +0 -0
  16. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/darwincore/__init__.py +0 -0
  17. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/darwincore/build_dc_terms_list.py +0 -0
  18. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/darwincore/terms.py +0 -0
  19. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/darwincore/utils.py +0 -0
  20. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/descriptors.py +0 -0
  21. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/exceptions.py +0 -0
  22. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/files.py +0 -0
  23. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/helpers.py +0 -0
  24. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/read.py +0 -0
  25. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/rows.py +0 -0
  26. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/__init__.py +0 -0
  27. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/archive_builder.py +0 -0
  28. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/helpers.py +0 -0
  29. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_characterization.py +0 -0
  30. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_datafile.py +0 -0
  31. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_descriptors.py +0 -0
  32. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_dwcareader.py +0 -0
  33. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_rows.py +0 -0
  34. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/test/test_star_record.py +0 -0
  35. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/dwca/vendor.py +0 -0
  36. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/python_dwca_reader.egg-info/dependency_links.txt +0 -0
  37. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/python_dwca_reader.egg-info/top_level.txt +0 -0
  38. {python_dwca_reader-0.17.0 → python_dwca_reader-0.17.1}/requirements-dev.txt +0 -0
  39. {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.0
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 `dwca.files.CSVDataFile`s we'd like to join.
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"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-dwca-reader
3
- Version: 0.17.0
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
@@ -4,6 +4,7 @@ LICENSE.txt
4
4
  MANIFEST.in
5
5
  README.rst
6
6
  code_of_conduct.txt
7
+ pyproject.toml
7
8
  requirements-dev.txt
8
9
  setup.cfg
9
10
  setup.py
@@ -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"