Skip to content

Commit 0e03b94

Browse files
authored
Merge pull request #1261 from effigies/ci/py312
CI: Add Python 3.12 to the stable test matrix
2 parents 508dd80 + ec10d70 commit 0e03b94

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
strategy:
106106
matrix:
107107
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
108-
python-version: [3.8, 3.9, "3.10", "3.11"]
108+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
109109
architecture: ['x64', 'x86']
110110
install: ['pip']
111111
check: ['test']

doc/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Requirements
8484
.. check these against pyproject.toml
8585
8686
* Python_ 3.8 or greater
87-
* NumPy_ 1.19 or greater
87+
* NumPy_ 1.20 or greater
8888
* Packaging_ 17.0 or greater
8989
* importlib-resources_ 1.3 or greater (or Python 3.9+)
9090
* SciPy_ (optional, for full SPM-ANALYZE support)

min-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Auto-generated by tools/update_requirements.py
2-
numpy ==1.19
2+
numpy ==1.20
33
packaging ==17
44
importlib_resources ==1.3; python_version < '3.9'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ readme = "README.rst"
1111
license = { text = "MIT License" }
1212
requires-python = ">=3.8"
1313
dependencies = [
14-
"numpy >=1.19",
14+
"numpy >=1.20",
1515
"packaging >=17",
1616
"importlib_resources >=1.3; python_version < '3.9'",
1717
]

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Auto-generated by tools/update_requirements.py
2-
numpy >=1.19
2+
numpy >=1.20
33
packaging >=17
44
importlib_resources >=1.3; python_version < '3.9'

0 commit comments

Comments
 (0)