From ab0b6e29560c88566907c09fa5221db96bf6d64b Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sun, 1 Dec 2024 08:04:55 -0500 Subject: [PATCH] =?UTF-8?q?v1.7.2=20=E2=80=94=20Packaging=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Drop support for Python 3.6 and 3.7 - Support Python 3.11, 3.12, and 3.13 - Moved to wheelodex organization - Migrated from setuptools to hatch - Update `entry-points-txt` requirement to `~= 0.2` --- CHANGELOG.md | 7 +++---- LICENSE | 2 +- src/wheel_inspect/__init__.py | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac15e09..9563c96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,10 @@ -In Development --------------- -- Dropped support for Python 3.6 +v1.7.2 (2024-12-01) +------------------- +- Drop support for Python 3.6 and 3.7 - Support Python 3.11, 3.12, and 3.13 - Moved to wheelodex organization - Migrated from setuptools to hatch - Update `entry-points-txt` requirement to `~= 0.2` -- Drop support for Python 3.7 v1.7.1 (2022-04-08) diff --git a/LICENSE b/LICENSE index efeb268..ff71573 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2017-2022 John Thorvald Wodder II +Copyright (c) 2017-2024 John Thorvald Wodder II Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/wheel_inspect/__init__.py b/src/wheel_inspect/__init__.py index e9c110c..f69e0da 100644 --- a/src/wheel_inspect/__init__.py +++ b/src/wheel_inspect/__init__.py @@ -18,7 +18,7 @@ from .inspecting import inspect_dist_info_dir, inspect_wheel from .schema import DIST_INFO_SCHEMA, SCHEMA, WHEEL_SCHEMA -__version__ = "1.7.1" +__version__ = "1.7.2" __author__ = "John Thorvald Wodder II" __author_email__ = "wheel-inspect@varonathe.org" __license__ = "MIT"