Skip to content

Commit 8e473ea

Browse files
committed
Require Python 3.10+
The transitive rich-click >=1.9.5 dependency, at least from conda-forge, requires Python 3.10+ anyway, so it's a losing battle trying to keep the already-EOL Python 3.9 as minimum.
1 parent 0200bad commit 8e473ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, windows-latest, macos-latest]
20-
python-version: ["3.9", "3.13"]
20+
python-version: ["3.10", "3.14"]
2121

2222
steps:
2323
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ classifiers = [
1616
"Intended Audience :: Education",
1717
"Intended Audience :: Science/Research",
1818
"Programming Language :: Python :: 3 :: Only",
19-
"Programming Language :: Python :: 3.9",
2019
"Programming Language :: Python :: 3.10",
2120
"Programming Language :: Python :: 3.11",
2221
"Programming Language :: Python :: 3.12",
2322
"Programming Language :: Python :: 3.13",
23+
"Programming Language :: Python :: 3.14",
2424
"Operating System :: Microsoft :: Windows",
2525
"Operating System :: Unix",
2626
"Operating System :: MacOS",
@@ -32,7 +32,7 @@ classifiers = [
3232
"Topic :: Utilities",
3333
]
3434

35-
requires-python = ">=3.9"
35+
requires-python = ">=3.10"
3636
dependencies = [
3737
"imglyb>=2.1.0",
3838
"jgo>=2.1.0",

0 commit comments

Comments
 (0)