Skip to content

Commit 01f864a

Browse files
authored
Add 3.13, remove 3.8 from CI (#292)
1 parent cf2eb9a commit 01f864a

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/coveralls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v4
1616
with:
17-
python-version: "3.12"
17+
python-version: "3.13"
1818
- name: Load matrix cache
1919
id: cache-restore
2020
uses: actions/cache/restore@v3

.github/workflows/defelement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up Python
1212
uses: actions/setup-python@v4
1313
with:
14-
python-version: "3.12"
14+
python-version: "3.13"
1515
- name: Load matrix cache
1616
id: cache-restore
1717
uses: actions/cache/restore@v3

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19-
- name: Set up Python 3.12
19+
- name: Set up Python
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: "3.12"
22+
python-version: "3.13"
2323

2424
- name: Install PyGitHub
2525
run: python3 -m pip install PyGitHub

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
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.8", "3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2020
steps:
2121
- name: Set up Python
2222
uses: actions/setup-python@v4
@@ -48,14 +48,14 @@ jobs:
4848
path: /home/runner/.cache/symfem
4949
key: symfem-matrix-cache-${{ github.run_id }}
5050
restore-keys: symfem-matrix-cache
51-
if: ${{ matrix.python-version == '3.12' && github.ref == 'refs/heads/main' }}
51+
if: ${{ matrix.python-version == '3.13' && github.ref == 'refs/heads/main' }}
5252

5353
run-tests-against-basix:
5454
name: Run tests against Basix
5555
runs-on: ubuntu-latest
5656
strategy:
5757
matrix:
58-
python-version: ["3.9", "3.10", "3.11", "3.12"]
58+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5959
steps:
6060
- name: Set up Python
6161
uses: actions/setup-python@v4

.github/workflows/style-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: 3.12
19+
python-version: 3.13
2020
- uses: actions/checkout@v4
2121
- run: python3 -m pip install -e .[style,docs]
2222
- run: |

.github/workflows/test-packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1414
steps:
1515
- name: Set up Python
1616
uses: actions/setup-python@v4
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
strategy:
4444
matrix:
45-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
45+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
4646
steps:
4747
- uses: conda-incubator/setup-miniconda@v2
4848
with:
@@ -75,7 +75,7 @@ jobs:
7575
runs-on: ubuntu-latest
7676
strategy:
7777
matrix:
78-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
78+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
7979
steps:
8080
- name: Set up Python
8181
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)