Skip to content

Commit cfb358e

Browse files
committed
update Python and workflows
- NEP: removed 3.9, 3.10, added 3.13, 3.14 - update actions versions
1 parent 2972714 commit cfb358e

5 files changed

Lines changed: 22 additions & 18 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626

2727
- name: testpypi_deploy
2828
uses: MDAnalysis/pypi-deployment@main
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747

4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v6
5050

5151
- name: pypi_deploy
5252
uses: MDAnalysis/pypi-deployment@main

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020

2121
- name: Setup python
22-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@v8
2323
with:
24-
python-version: 3.9
24+
python-version: 3.12
2525

2626
- name: Display Python version
2727
run: python -c "import sys; print(sys.version)"
@@ -44,7 +44,7 @@ jobs:
4444
make html
4545
4646
- name: deploy docs
47-
uses: peaceiris/actions-gh-pages@v3
47+
uses: peaceiris/actions-gh-pages@v4
4848
with:
4949
github_token: ${{ secrets.GITHUB_TOKEN }}
5050
publish_dir: ./docs/_build/html

.github/workflows/gh-ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,24 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
os: [ubuntu-latest]
27-
python-version: ["3.9", "3.10", "3.11", "3.12"]
27+
python-version: ["3.11", "3.12", "3.13", "3.14"]
2828
include:
2929
- os: macOS-latest
30-
python-version: "3.9"
30+
python-version: "3.11"
3131
- os: macOS-latest
32-
python-version: "3.12"
32+
python-version: "3.14"
3333
- os: windows-latest
34-
python-version: "3.9"
34+
python-version: "3.11"
3535
- os: windows-latest
36-
python-version: "3.12"
36+
python-version: "3.14"
3737

3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v6
4040
with:
4141
fetch-depth: 0
4242

4343
- name: Setup python
44-
uses: actions/setup-python@v5
44+
uses: actions/setup-python@v6
4545
with:
4646
python-version: ${{ matrix.python-version }}
4747

@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Codecov
6969
if: github.event_name != 'schedule'
70-
uses: codecov/codecov-action@v4
70+
uses: codecov/codecov-action@v6
7171
with:
7272
name: codecov-${{ matrix.os }}-py${{ matrix.python-version }}
7373
token: ${{ secrets.CODECOV_TOKEN }}

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9-
## Changes
9+
### Changes
10+
- Update package to only support NEP29 range (Python 3.11 - 3.14 as of writing)
1011
- Update packaging to be PEP518 compliant.
1112

13+
### Fixes
14+
- removed deprecated pkg_resources use (#75)
15+
1216
## [0.9.0] - 2023-10-30
1317

1418
### Changes

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ classifiers = [
2525
"Operating System :: Microsoft :: Windows ",
2626
"Programming Language :: Python",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.9",
29-
"Programming Language :: Python :: 3.10",
3028
"Programming Language :: Python :: 3.11",
3129
"Programming Language :: Python :: 3.12",
30+
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
3232
"Topic :: Scientific/Engineering",
3333
"Topic :: Scientific/Engineering :: Bio-Informatics",
3434
"Topic :: Scientific/Engineering :: Chemistry",
3535
"Topic :: Software Development :: Libraries :: Python Modules",
3636
]
3737
readme = {file = "README.md", content-type = "text/markdown"}
38-
requires-python = ">=3.9"
38+
requires-python = ">=3.11"
3939
dependencies = [
4040
"tqdm",
4141
]

0 commit comments

Comments
 (0)