Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/project-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-24.04, windows-2025, macos-15]
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout repo
uses: actions/checkout@v5.0.0
Expand All @@ -40,10 +40,10 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v5.0.0
- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v6.0.0
with:
python-version: 3.13
python-version: 3.14
- name: Install python dependencies
run: |
pip install --upgrade pip
Expand All @@ -56,10 +56,10 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v5.0.0
- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v6.0.0
with:
python-version: 3.13
python-version: 3.14
- name: Install python dependencies
run: |
pip install --upgrade pip
Expand All @@ -75,7 +75,7 @@ jobs:
timeout-minutes: 15
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
mdanalysis-version: ["2.9.0", "latest"]
name: MDAnalysis Compatibility Tests
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6.0.0
with:
python-version: 3.13
python-version: 3.14

- name: Get latest release from pip
id: latestreleased
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6.0.0
with:
python-version: 3.13
python-version: 3.14

- name: Install flit
run: |
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
Expand Down
Loading