Skip to content

Commit

Permalink
Drop Python 3.9 support
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
DougBurke committed Oct 8, 2024
1 parent b3591e3 commit d4fa0d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ 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",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics"
]

requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"numpy"
]
Expand Down

0 comments on commit d4fa0d2

Please sign in to comment.