Skip to content

Commit 368c45d

Browse files
authored
Merge pull request #688 from bashtage/update-ci
CI: Add Python 3.12
2 parents 9afe9ca + ca73936 commit 368c45d

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ variables:
1010
VML_NUM_THREADS: 1
1111
OPENBLAS_NUM_THREADS: 1
1212
PYTHONHASHSEED: 12345678 # Ensure tests are correctly gathered by xdist
13-
SETUPTOOLS_USE_DISTUTILS: "stdlib"
13+
# SETUPTOOLS_USE_DISTUTILS: "stdlib"
1414
TEST_INSTALL: false
1515
MPLBACKEND: agg
1616
PYTEST_PATTERN: "(not slow)"

ci/azure/azure_template_posix.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
vmImage: ${{ parameters.vmImage }}
1717
strategy:
1818
matrix:
19+
python_312:
20+
python.version: '3.12'
1921
python_311:
2022
python.version: '3.11'
2123
python_310:

ci/azure/azure_template_windows.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
python.version: '3.10'
2525
python311_win_latest:
2626
python.version: '3.11'
27+
python312_win_latest:
28+
python.version: '3.12'
2729
maxParallel: 10
2830

2931
steps:

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ oldest-supported-numpy>=2022.11.19
55

66
# Performance
77
cython>=0.29.34 # Works with 3.0.0b2
8-
numba>=0.49,!=0.50.*
8+
numba>=0.49,!=0.50.*;python_version<"3.12"
99

1010
# Graphics
1111
matplotlib>=3

0 commit comments

Comments
 (0)