Skip to content

Commit 3426f4f

Browse files
committed
include Python v3.14 within project-ci.yaml and release.yaml
1 parent a6d7047 commit 3426f4f

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/project-ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-24.04, windows-2025, macos-15]
17-
python-version: ["3.11", "3.12", "3.13"]
17+
python-version: ["3.11", "3.12", "3.13", "3.14"]
1818
steps:
1919
- name: Checkout repo
2020
uses: actions/checkout@v5.0.0
@@ -40,10 +40,10 @@ jobs:
4040
timeout-minutes: 15
4141
steps:
4242
- uses: actions/checkout@v5.0.0
43-
- name: Set up Python 3.13
43+
- name: Set up Python 3.14
4444
uses: actions/setup-python@v6.0.0
4545
with:
46-
python-version: 3.13
46+
python-version: 3.14
4747
- name: Install python dependencies
4848
run: |
4949
pip install --upgrade pip
@@ -56,10 +56,10 @@ jobs:
5656
timeout-minutes: 15
5757
steps:
5858
- uses: actions/checkout@v5.0.0
59-
- name: Set up Python 3.13
59+
- name: Set up Python 3.14
6060
uses: actions/setup-python@v6.0.0
6161
with:
62-
python-version: 3.13
62+
python-version: 3.14
6363
- name: Install python dependencies
6464
run: |
6565
pip install --upgrade pip
@@ -75,7 +75,7 @@ jobs:
7575
timeout-minutes: 15
7676
strategy:
7777
matrix:
78-
python-version: ["3.11", "3.12", "3.13"]
78+
python-version: ["3.11", "3.12", "3.13", "3.14"]
7979
mdanalysis-version: ["2.9.0", "latest"]
8080
name: MDAnalysis Compatibility Tests
8181
steps:

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Python
2424
uses: actions/setup-python@v6.0.0
2525
with:
26-
python-version: 3.13
26+
python-version: 3.14
2727

2828
- name: Get latest release from pip
2929
id: latestreleased
@@ -124,7 +124,7 @@ jobs:
124124
- name: Set up Python
125125
uses: actions/setup-python@v6.0.0
126126
with:
127-
python-version: 3.13
127+
python-version: 3.14
128128

129129
- name: Install flit
130130
run: |

0 commit comments

Comments
 (0)