Skip to content

Commit 1fb1267

Browse files
committed
v1.8.0 — Fix provenance support
- Provenance support belatedly updated to match a change to PEP 740: - `DistributionPackage.provenance_sha256` is now deprecated and is always `None` - `DistributionPackage.provenance_url` is now determined correctly and is `None` when no provenance file is declared - `PyPISimple.get_provenance()` no longer verifies the provenance's digest, and the `verify` argument is now deprecated
1 parent b32be83 commit 1fb1267

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
v1.8.0 (in development)
2-
-----------------------
1+
v1.8.0 (2025-09-03)
2+
-------------------
33
- Provenance support belatedly updated to match a change to PEP 740:
44
- `DistributionPackage.provenance_sha256` is now deprecated and is always
55
`None`

docs/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Changelog
44
=========
55

6-
v1.8.0 (in development)
7-
-----------------------
6+
v1.8.0 (2025-09-03)
7+
-------------------
88
- Provenance support belatedly updated to match a change to :pep:`740`:
99

1010
- `DistributionPackage.provenance_sha256` is now deprecated and is always

src/pypi_simple/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
for more information.
1515
"""
1616

17-
__version__ = "1.8.0.dev1"
17+
__version__ = "1.8.0"
1818
__author__ = "John Thorvald Wodder II"
1919
__author_email__ = "pypi-simple@varonathe.org"
2020
__license__ = "MIT"

0 commit comments

Comments
 (0)