From d4fa0d23b6dd3a8fa95b4665609c7c5333fb8ba5 Mon Sep 17 00:00:00 2001 From: Douglas Burke Date: Tue, 8 Oct 2024 08:59:49 -0400 Subject: [PATCH] Drop Python 3.9 support At present you should be able to use Python 3.9 but - I do not have the time to test - I do not have the time to handle any work-arounds So it is safest to drop explicit support. --- CHANGELOG.md | 4 ++++ pyproject.toml | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a4a202..5775781 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 0.0.31 +Drop support for Python 3.9 as I do not have time or energy to +test with old versions. If this is a problem then please submit +the necessary fixes. + Internal minor clean-up of the configuration code: remove tracking of the model.dat file from the MANIFEST, avoid an un-used import from the refactoring done in 0.0.30, and move the include directory diff --git a/pyproject.toml b/pyproject.toml index 6f4f6fd..c50b836 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,6 @@ classifiers = [ "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Programming Language :: C", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", @@ -27,7 +26,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Physics" ] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "numpy" ]