Skip to content

Commit 3cc764b

Browse files
committed
Roll in Python 3.14 and out 3.10
1 parent e98ec8c commit 3cc764b

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/isort-and-black-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v6
13-
- name: Set up Python 3.13
13+
- name: Set up Python 3.14
1414
uses: actions/setup-python@v6
1515
with:
16-
python-version: 3.13
16+
python-version: 3.14
1717
- name: Install click, black and isort
1818
run: pip install 'click==8.2.1' 'black==25.11.0' 'isort==5.13.2'
1919
- name: Run isort --check .

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.10', '3.11', '3.12', '3.13']
14+
python-version: ['3.11', '3.12', '3.13', '3.14']
1515
steps:
1616
- uses: actions/checkout@v6
1717
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [windows]
16-
python-version: ['3.13']
16+
python-version: ['3.14']
1717
steps:
1818
- uses: actions/checkout@v6
1919
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies = [
1414
"requests",
1515
"scikit-image; sys_platform == 'darwin'",
1616
]
17-
requires-python = ">=3.10"
17+
requires-python = ">=3.11"
1818
readme = "README.rst"
1919
license = "GPL-3.0-or-later"
2020
maintainers = [
@@ -24,7 +24,10 @@ classifiers = [
2424
"Framework :: Django",
2525
"Intended Audience :: Science/Research",
2626
"Operating System :: OS Independent",
27-
"Programming Language :: Python :: 3",
27+
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13",
30+
"Programming Language :: Python :: 3.14",
2831
"Topic :: Scientific/Engineering :: Mathematics",
2932
]
3033
dynamic = ["version"]

0 commit comments

Comments
 (0)