Skip to content

Commit b56bd04

Browse files
committed
Remove py38 from tests for lack of numpy 2.0 support
1 parent 47cb00d commit b56bd04

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
20+
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
2121
steps:
2222
- uses: actions/checkout@v4
2323
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ classifiers = [
2828
"Operating System :: OS Independent",
2929
"Programming Language :: Python",
3030
"Programming Language :: Python :: 3",
31-
"Programming Language :: Python :: 3.7",
3231
"Programming Language :: Python :: 3.8",
3332
"Programming Language :: Python :: 3.9",
3433
"Programming Language :: Python :: 3.10",
3534
"Programming Language :: Python :: 3.11",
35+
"Programming Language :: Python :: 3.12",
3636
]
3737
readme = "README.md"
3838
requires-python = ">=3.8"
@@ -126,4 +126,4 @@ docs = "sphinx-autobuild docs docs/_build/html"
126126
features = ["dev", "test"]
127127

128128
[[tool.hatch.envs.test.matrix]]
129-
python = ["3.8", "3.9", "3.10", "3.11"]
129+
python = ["3.9", "3.10", "3.11", "3.12"]

0 commit comments

Comments
 (0)