From a619d79626cfff6678d194c7dd8d0d948bb644c0 Mon Sep 17 00:00:00 2001 From: Phil Thompson Date: Thu, 12 Dec 2024 09:55:37 +0000 Subject: [PATCH] Release v6.9.1 --- docs/conf.py | 2 +- docs/releases.md | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index c10b11b4..8c7412c5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,7 @@ copyright = '{0} Phil Thompson '.format( date.today().year) author = 'Phil Thompson' -version = 'v6.9.0' +version = 'v6.9.1' # -- General configuration --------------------------------------------------- diff --git a/docs/releases.md b/docs/releases.md index 21690c2a..d35bda59 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -1,6 +1,32 @@ # Release Notes +## v6.9.1 + +### `sip-sdist` creates PEP 625 compatible file names + +The sdists created by `sip-sdist` are now compatible with PEP 625 in that +they have lower case names. This ensures that they will still be able to +be uploaded to PyPI. + +Resolves [#23](https://github.com/Python-SIP/sip/issues/23) + +### Update the minimum version of `setuptools` + +The minimum version of `setuptools` used by SIP and by the generated `sip` +module sdists has been set to v69.5. This is the oldest version that +supports PEP 625. + +Resolves [#55](https://github.com/Python-SIP/sip/issues/55) + +### `sip` module sdist `Requires-Python` is incorrect + +The minimum Python version in the generated `sip` module metadata is now +set to v3.9. + +Resolves [#56](https://github.com/Python-SIP/sip/issues/56) + + ## v6.9.0 ### Removal of support for Python v3.8