Skip to content

Commit 76d19e9

Browse files
committed
Drop support for Python 3.10 (required for DeepLC)
1 parent 18bfbae commit 76d19e9

File tree

3 files changed

+1775
-1483
lines changed

3 files changed

+1775
-1483
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
28+
python-version: ["3.11", "3.12", "3.13", "3.14"]
2929
steps:
3030
- uses: actions/checkout@v4
3131

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
"Topic :: Scientific/Engineering :: Bio-Informatics",
3232
"Development Status :: 5 - Production/Stable",
3333
]
34-
requires-python = ">=3.10"
34+
requires-python = ">=3.11"
3535
dependencies = [
3636
"cascade-config>=0.4.0",
3737
"click>=7",
@@ -110,11 +110,11 @@ profile = "black"
110110

111111
[tool.black]
112112
line-length = 99
113-
target-version = ['py39']
113+
target-version = ['py311']
114114

115115
[tool.ruff]
116116
line-length = 99
117-
target-version = 'py39'
117+
target-version = 'py311'
118118

119119
[tool.ruff.lint]
120120
extend-select = ["T201", "T203"]

0 commit comments

Comments
 (0)