Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 3305561

Browse files
authored
update ci (#504)
* update `ci.yml` * update `pyproject.toml`
1 parent 5387e39 commit 3305561

File tree

2 files changed

+20
-17
lines changed

2 files changed

+20
-17
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ on: push
44

55
jobs:
66
build:
7-
runs-on: ${{ matrix.platform }}
7+
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
platform: [ubuntu-latest, macos-latest]
11-
python-version: ["3.9", "3.10", "3.11", "3.12"]
10+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1211

1312
steps:
1413
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,30 @@ classifiers = [
1010
"Development Status :: 5 - Production/Stable",
1111
"License :: OSI Approved :: Apache Software License",
1212
"Programming Language :: Python :: 3.9",
13+
"Programming Language :: Python :: 3.10",
14+
"Programming Language :: Python :: 3.11",
15+
"Programming Language :: Python :: 3.12",
16+
"Programming Language :: Python :: 3.13",
1317
"Topic :: Scientific/Engineering :: Chemistry",
1418
"Topic :: Scientific/Engineering :: Bio-Informatics",
1519
"Intended Audience :: Science/Research",
1620
]
1721

1822
dependencies = [
19-
"bio==1.6.2",
20-
"lxml==5.4.0",
21-
"mdanalysis==2.7.0",
22-
"requests==2.32.4",
23-
"biopython==1.85",
24-
"scipy==1.13.1",
25-
"matplotlib==3.9.4",
26-
"pdb-tools==2.5.0",
27-
"pandas==2.2.3",
28-
"openpyxl==3.1.5",
29-
"plotly==6.0.1",
30-
"pdbecif==1.5",
31-
"jsonpickle==4.1.0",
32-
"kaleido==0.2.1",
23+
"bio>=1.6.2",
24+
"lxml>=5.4.0",
25+
"mdanalysis>=2.7.0",
26+
"requests>=2.32.4",
27+
"biopython>=1.85",
28+
"scipy>=1.13.1",
29+
"matplotlib>=3.9.4",
30+
"pdb-tools>=2.5.0",
31+
"pandas>=2.2.3",
32+
"openpyxl>=3.1.5",
33+
"plotly>=6.0.1",
34+
"pdbecif>=1.5",
35+
"jsonpickle>=4.1.0",
36+
"kaleido>=0.2.1",
3337
]
3438

3539
[project.optional-dependencies]

0 commit comments

Comments
 (0)