Skip to content

Commit e89d5f4

Browse files
committed
fix up python/macos versions
1 parent 59bf109 commit e89d5f4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [ubuntu-latest]
33-
python-version: ['3.9', '3.10', '3.11', '3.12']
33+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
3434
include:
3535
- os: macos-latest
36-
python-version: '3.12'
36+
python-version: '3.13'
3737
# Intel runner
38-
- os: macos-13
39-
python-version: '3.12'
38+
- os: macos-15-intel
39+
python-version: '3.13'
4040

4141
steps:
4242
- uses: actions/checkout@v5
@@ -99,11 +99,11 @@ jobs:
9999

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

105105
- name: Coverage report for doctest only
106-
if: matrix.python-version == '3.12' && matrix.os != 'macos-latest'
106+
if: matrix.python-version == '3.13' && matrix.os != 'macos-latest'
107107
run: |
108108
coverage report --data-file=.coverage-doctest
109109
coverage xml --data-file=.coverage-doctest -o doctest-coverage.xml

0 commit comments

Comments
 (0)