Skip to content

Commit

Permalink
Drop Python 3.8 and 3.9 from GitHub Actions test matrix (#51)
Browse files Browse the repository at this point in the history
That's per NumPy Python support policy, which considers Python versions only
released within the last 48 months.

No updates to the stubgen wrapper yet, so that Python 3.8 should still work, though
untested. I could run pyupgrade for 3.9 later to bump to Python 3.9 syntax, for
example by adding a ruff job.
  • Loading branch information
nicholasjng authored Dec 22, 2024
1 parent a601352 commit 09f0622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
Expand Down

0 comments on commit 09f0622

Please sign in to comment.