Skip to content

Commit daffcae

Browse files
authored
Merge pull request #1415 from haddocking/python-314
support python3.14
2 parents 80e661f + 17fde1d commit daffcae

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
checks: write
2626
strategy:
2727
matrix:
28-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
28+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2929
fail-fast: false
3030

3131
steps:
@@ -86,7 +86,7 @@ jobs:
8686

8787
- uses: actions/setup-python@v5
8888
with:
89-
python-version: "3.13"
89+
python-version: "3.14"
9090

9191
- name: install system dependencies
9292
run: |

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
2727
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2829
]
2930
keywords = [
3031
"Structural Biology",
@@ -33,7 +34,7 @@ keywords = [
3334
"Protein docking",
3435
"Proteins",
3536
]
36-
requires-python = ">=3.9, <3.14"
37+
requires-python = ">=3.9, <3.15"
3738
dependencies = [
3839
'pdb-tools>=2.5.0',
3940
'biopython==1.*',

0 commit comments

Comments
 (0)