From 20357e469a258f885a4dc36225bdc62d8513f9a9 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Thu, 12 Mar 2020 06:24:57 +0000 Subject: [PATCH] =?UTF-8?q?v1.4.1=20=E2=80=94=20Dependency=20Hades?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Drop support for Python 3.4 - Update `property-manager` dependency, thereby eliminating a DeprecationWarning --- CHANGELOG.md | 6 ++++-- src/wheel_inspect/__init__.py | 2 +- tox.ini | 4 ++++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c38e540..b12be93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ -v1.5.0 (in development) ------------------------ +v1.4.1 (2020-03-12) +------------------- - Drop support for Python 3.4 +- Update `property-manager` dependency, thereby eliminating a + DeprecationWarning v1.4.0 (2020-01-25) diff --git a/src/wheel_inspect/__init__.py b/src/wheel_inspect/__init__.py index bd4a1fe..617781e 100644 --- a/src/wheel_inspect/__init__.py +++ b/src/wheel_inspect/__init__.py @@ -18,7 +18,7 @@ from .schema import SCHEMA from .wheelcls import Wheel, inspect_wheel -__version__ = '1.5.0.dev1' +__version__ = '1.4.1' __author__ = 'John Thorvald Wodder II' __author_email__ = 'wheel-inspect@varonathe.org' __license__ = 'MIT' diff --git a/tox.ini b/tox.ini index 006910a..618b936 100644 --- a/tox.ini +++ b/tox.ini @@ -25,6 +25,10 @@ parallel = True [coverage:paths] source = src + ### TODO: Look into replacing the below two lines with + ### "{envsitepackagesdir}" (or "{envsitepackagesdir}/wheel_inspect"?); the + ### downside is that the coverage report then insists on prepending + ### {envsitepackagesdir} to all filenames .tox/*/lib/python*/site-packages .tox/pypy*/site-packages