Skip to content

Commit

Permalink
Revert "Add support for Python 3.13 and remove support for 3.9"
Browse files Browse the repository at this point in the history
This reverts commit 0e437f7.
  • Loading branch information
fjclark committed Feb 10, 2025
1 parent 4731538 commit 05a3a59
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 0 additions & 8 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@

## 0.1.2 - 2025-02-10

### Added

- Support for Python 3.13.

### Removed

- Support for Python 3.9.

### Fixed

- Added new type hints.
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.10"
requires-python = ">=3.8"
# Declare any run-time dependencies that should be installed with the package.
dependencies = [
"importlib-resources;python_version<'3.10'",
"numpy>=1.20.0",
"scipy>=1.6.0",
"matplotlib>=3.3.0",
Expand Down

0 comments on commit 05a3a59

Please sign in to comment.