@@ -27,13 +27,13 @@ jobs:
27
27
strategy :
28
28
matrix :
29
29
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' ]
31
31
include :
32
32
- os : macos-latest
33
- python-version : ' 3.11 '
33
+ python-version : ' 3.12 '
34
34
# Apple silicon runner
35
35
- os : macos-14
36
- python-version : ' 3.11 '
36
+ python-version : ' 3.12 '
37
37
38
38
steps :
39
39
- uses : actions/checkout@v4
86
86
coverage xml
87
87
88
88
- 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'
90
90
uses : codecov/codecov-action@v4
91
91
with :
92
92
fail_ci_if_error : true
@@ -96,17 +96,17 @@ jobs:
96
96
97
97
- name : Test docstring examples with doctest
98
98
# 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'
100
100
run : coverage run --data-file=.coverage-doctest --module pytest src/ README.rst
101
101
102
102
- 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'
104
104
run : |
105
105
coverage report --data-file=.coverage-doctest
106
106
coverage xml --data-file=.coverage-doctest -o doctest-coverage.xml
107
107
108
108
- 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'
110
110
uses : codecov/codecov-action@v4
111
111
with :
112
112
fail_ci_if_error : true
@@ -115,6 +115,6 @@ jobs:
115
115
token : ${{ secrets.CODECOV_TOKEN }}
116
116
117
117
- 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 '
119
119
run : |
120
120
pytest --benchmark-sort=mean tests/benchmarks/test_benchmark.py
0 commit comments