Skip to content

Commit dd4a243

Browse files
authoredMar 20, 2024··
ci: Add Python 3.12 to testing to CI as default (#2460)
* Add Python 3.12 to testing in CI. * Default to using Python 3.12 in GitHub Actions where possible. * Add ignore of DeprecationWarning for protobuf * Add Python 3.12 trove classifier to PyPI metadata.
1 parent a0d94b9 commit dd4a243

9 files changed

+26
-24
lines changed
 

‎.github/workflows/bump-version.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,11 +196,11 @@ jobs:
196196
echo "steps.script.outputs.old_tag=v${current_tag}"
197197
echo "old_tag=v${current_tag}" >> $GITHUB_OUTPUT
198198
199-
- name: Set up Python 3.11
199+
- name: Set up Python 3.12
200200
if: success()
201201
uses: actions/setup-python@v5
202202
with:
203-
python-version: '3.11'
203+
python-version: '3.12'
204204

205205
- name: Install Python dependencies
206206
run: |

‎.github/workflows/ci-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [windows-latest]
20-
python-version: ['3.9', '3.10', '3.11']
20+
python-version: ['3.9', '3.10', '3.11', '3.12']
2121

2222
steps:
2323
- uses: actions/checkout@v4

‎.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: [ubuntu-latest]
30-
python-version: ['3.8', '3.9', '3.10', '3.11']
30+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
3131
include:
3232
- os: macos-latest
33-
python-version: '3.11'
33+
python-version: '3.12'
3434
# Apple silicon runner
3535
- os: macos-14
36-
python-version: '3.11'
36+
python-version: '3.12'
3737

3838
steps:
3939
- uses: actions/checkout@v4
@@ -86,7 +86,7 @@ jobs:
8686
coverage xml
8787
8888
- name: Report contrib coverage with Codecov
89-
if: github.event_name != 'schedule' && matrix.python-version == '3.11' && matrix.os == 'ubuntu-latest'
89+
if: github.event_name != 'schedule' && matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
9090
uses: codecov/codecov-action@v4
9191
with:
9292
fail_ci_if_error: true
@@ -96,17 +96,17 @@ jobs:
9696

9797
- name: Test docstring examples with doctest
9898
# TODO: Don't currently try to match amd64 and arm64 floating point for docs, but will in the future.
99-
if: matrix.python-version == '3.11' && matrix.os != 'macos-14'
99+
if: matrix.python-version == '3.12' && matrix.os != 'macos-14'
100100
run: coverage run --data-file=.coverage-doctest --module pytest src/ README.rst
101101

102102
- name: Coverage report for doctest only
103-
if: matrix.python-version == '3.11' && matrix.os != 'macos-14'
103+
if: matrix.python-version == '3.12' && matrix.os != 'macos-14'
104104
run: |
105105
coverage report --data-file=.coverage-doctest
106106
coverage xml --data-file=.coverage-doctest -o doctest-coverage.xml
107107
108108
- name: Report doctest coverage with Codecov
109-
if: github.event_name != 'schedule' && matrix.python-version == '3.11' && matrix.os == 'ubuntu-latest'
109+
if: github.event_name != 'schedule' && matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
110110
uses: codecov/codecov-action@v4
111111
with:
112112
fail_ci_if_error: true
@@ -115,6 +115,6 @@ jobs:
115115
token: ${{ secrets.CODECOV_TOKEN }}
116116

117117
- name: Run benchmarks
118-
if: github.event_name == 'schedule' && matrix.python-version == '3.11'
118+
if: github.event_name == 'schedule' && matrix.python-version == '3.12'
119119
run: |
120120
pytest --benchmark-sort=mean tests/benchmarks/test_benchmark.py

‎.github/workflows/dependencies-head.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest]
20-
python-version: ['3.11']
20+
python-version: ['3.12']
2121

2222
steps:
2323
- uses: actions/checkout@v4
@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
matrix:
4949
os: [ubuntu-latest]
50-
python-version: ['3.11']
50+
python-version: ['3.12']
5151

5252
steps:
5353
- uses: actions/checkout@v4
@@ -77,7 +77,7 @@ jobs:
7777
strategy:
7878
matrix:
7979
os: [ubuntu-latest]
80-
python-version: ['3.11']
80+
python-version: ['3.12']
8181

8282
steps:
8383
- uses: actions/checkout@v4
@@ -103,7 +103,7 @@ jobs:
103103
strategy:
104104
matrix:
105105
os: [ubuntu-latest]
106-
python-version: ['3.11']
106+
python-version: ['3.12']
107107

108108
steps:
109109
- uses: actions/checkout@v4
@@ -128,7 +128,7 @@ jobs:
128128
strategy:
129129
matrix:
130130
os: [ubuntu-latest]
131-
python-version: ['3.11']
131+
python-version: ['3.12']
132132

133133
steps:
134134
- uses: actions/checkout@v4
@@ -165,7 +165,7 @@ jobs:
165165
strategy:
166166
matrix:
167167
os: [ubuntu-latest]
168-
python-version: ['3.11']
168+
python-version: ['3.12']
169169

170170
steps:
171171
- uses: actions/checkout@v4

‎.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: '3.11'
27+
python-version: '3.12'
2828

2929
- name: Install Python dependencies
3030
run: |

‎.github/workflows/notebooks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ['3.11']
19+
python-version: ['3.12']
2020

2121
steps:
2222
- uses: actions/checkout@v4

‎.github/workflows/publish-package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
with:
3737
fetch-depth: 0
3838

39-
- name: Set up Python 3.11
39+
- name: Set up Python 3.12
4040
uses: actions/setup-python@v5
4141
with:
42-
python-version: '3.11'
42+
python-version: '3.12'
4343

4444
- name: Install python-build and twine
4545
run: |

‎.github/workflows/release_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest]
21-
python-version: ['3.8', '3.9', '3.10', '3.11']
21+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
2222
include:
2323
- os: macos-latest
24-
python-version: '3.11'
24+
python-version: '3.12'
2525

2626
steps:
2727
- uses: actions/checkout@v4

‎pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ classifiers = [
3939
"Programming Language :: Python :: 3.9",
4040
"Programming Language :: Python :: 3.10",
4141
"Programming Language :: Python :: 3.11",
42+
"Programming Language :: Python :: 3.12",
4243
"Programming Language :: Python :: Implementation :: CPython",
4344
"Topic :: Scientific/Engineering",
4445
"Topic :: Scientific/Engineering :: Physics",
@@ -106,7 +107,7 @@ test = [
106107
"pytest-mpl",
107108
"ipympl>=0.3.0",
108109
"pydocstyle",
109-
"papermill~=2.3.4",
110+
"papermill~=2.5.0",
110111
"scrapbook~=0.5.0",
111112
"jupyter",
112113
"graphviz",
@@ -225,6 +226,7 @@ filterwarnings = [
225226
"ignore:ml_dtypes.float8_e4m3b11 is deprecated.", #FIXME: Can remove when jaxlib>=0.4.12
226227
"ignore:jsonschema.RefResolver is deprecated as of v4.18.0, in favor of the:DeprecationWarning", # Issue #2139
227228
"ignore:Skipping device Apple Paravirtual device that does not support Metal 2.0:UserWarning", # Can't fix given hardware/virtualized device
229+
'ignore:Type google._upb._message.[A-Z]+ uses PyType_Spec with a metaclass that has custom:DeprecationWarning', # protobuf via tensorflow
228230
]
229231

230232
[tool.coverage.run]

0 commit comments

Comments
 (0)
Please sign in to comment.