Skip to content

Commit 3f6f365

Browse files
committed
v1.7.0 — Support differently-normalized wheel and .dist-info names
- When verifying a `RECORD`, directory entries listed therein are now checked for existence. - Remove dependency on `pkg_resources` - Dropped support for Python 3.5 - Support Python 3.9 - Drop `read_version` build dependency - Support wheels whose filenames and `.dist-info` directories use different casings/spellings for the project name and/or version - Better validation errors for wheels with missing or improper `.dist_info` directories
1 parent 4eb3f69 commit 3f6f365

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
v1.7.0 (in development)
2-
-----------------------
1+
v1.7.0 (2020-11-07)
2+
-------------------
33
- When verifying a `RECORD`, directory entries listed therein are now checked
44
for existence.
55
- Remove dependency on `pkg_resources`

src/wheel_inspect/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .inspecting import inspect_dist_info_dir, inspect_wheel
1919
from .schema import DIST_INFO_SCHEMA, SCHEMA, WHEEL_SCHEMA
2020

21-
__version__ = '1.7.0.dev1'
21+
__version__ = '1.7.0'
2222
__author__ = 'John Thorvald Wodder II'
2323
__author_email__ = '[email protected]'
2424
__license__ = 'MIT'

0 commit comments

Comments
 (0)