Skip to content

Commit ef0d67d

Browse files
committed
Update minimum Python version to 3.11
Removed Python 3.10 from CI test matrices and set 'requires-python' to >=3.11 in pyproject.toml to ensure compatibility with newer Python versions.
1 parent 7e2273c commit ef0d67d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/remote-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
max-parallel: 4
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.10', '3.11', '3.12', '3.13']
12+
python-version: ['3.11', '3.12', '3.13']
1313

1414
steps:
1515
- name: Checkout

.github/workflows/unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
max-parallel: 4
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.10', '3.11', '3.12', '3.13']
12+
python-version: ['3.11', '3.12', '3.13']
1313

1414
steps:
1515
- name: Checkout

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pyenzyme"
33
version = "2.2.1"
44
description = "A Python library for EnzymeML"
55
authors = [{ name = "Jan Range", email = "range.jan@web.de" }]
6-
requires-python = ">=3.10,<4"
6+
requires-python = ">=3.11,<4"
77
readme = "README.md"
88
license = { text = "BSD-2-Clause" }
99
dependencies = [

0 commit comments

Comments
 (0)