Skip to content

Commit

Permalink
Next build will deprecate Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Nov 23, 2024
1 parent 98f5e89 commit 2378606
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [x86_64, aarch64]
cibw_build: ["cp3{9,10,11,12,13}-*"]
p_ver: ["3.9-3.13"]
cibw_build: ["cp3{10,11,12,13}-*"]
p_ver: ["3.10-3.13"]
exclude:
- os: windows-latest
arch: aarch64
Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Release notes for NumExpr 2.10 series
Changes from 2.10.2 to 2.10.3
-----------------------------

* **Under development.**
* Python 3.10 is now the minimum supported version.


Changes from 2.10.1 to 2.10.2
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ classifiers = [
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
# Follow guidelines from https://scientific-python.org/specs/spec-0000/
dependencies = [
"numpy>=1.23.0",
Expand Down

0 comments on commit 2378606

Please sign in to comment.