Skip to content

Commit 6696601

Browse files
committed
bump minimum supported python version to 3.11 (released 2021)
1 parent 2352c50 commit 6696601

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/hsp2-pip-install-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
continue-on-error: true
4040
strategy:
4141
matrix:
42-
python-version: ['3.9', '3.10', '3.11', '3.12']
42+
python-version: ['3.11', '3.12', '3.13', '3.14']
4343
pandas-version: ['']
4444
include:
4545
- python-version: '3.11'
@@ -73,7 +73,7 @@ jobs:
7373
continue-on-error: true
7474
strategy:
7575
matrix:
76-
python-version: ['3.9', '3.10', '3.11', '3.12']
76+
python-version: ['3.11', '3.12', '3.13', '3.14']
7777
steps:
7878
- uses: actions/checkout@v4
7979
- name: Set up Python

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
- nodefaults # Speeds solving env, by limiting the number of options
66

77
dependencies:
8-
- python >=3.10
8+
- python >=3.11
99

1010
# Running HSP2
1111
- scipy # Scipy also installs numpy

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ classifiers = [
3030
"License :: OSI Approved :: GNU Affero General Public License v3",
3131
"Natural Language :: English",
3232
"Operating System :: OS Independent",
33-
"Programming Language :: Python :: 3.9",
34-
"Programming Language :: Python :: 3.10",
3533
"Programming Language :: Python :: 3.11",
3634
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
36+
"Programming Language :: Python :: 3.14",
3737
"Topic :: Scientific/Engineering",
3838
"Topic :: Software Development :: Libraries :: Python Modules"
3939
]
@@ -46,7 +46,7 @@ keywords = [
4646
"python"
4747
]
4848
license = {file = "LICENSE"}
49-
requires-python = ">=3.9"
49+
requires-python = ">=3.11"
5050

5151
[project.optional-dependencies]
5252
slim = ["numba", "pandas"]

0 commit comments

Comments
 (0)