Skip to content

Commit 9f74858

Browse files
authored
Merge pull request BiAPoL#453 from BiAPoL/drop-3.9
drop 3.9 support
2 parents eae5ec2 + bf9efb2 commit 9f74858

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
platform: [ubuntu-latest, windows-latest, macos-latest] # macos-latest (disabled, see related issue)
26-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
26+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2727

2828
steps:
2929
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ classifiers = [
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
2323
"Programming Language :: Python :: 3 :: Only",
24-
"Programming Language :: Python :: 3.8",
25-
"Programming Language :: Python :: 3.9",
2624
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
26+
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2728
"Topic :: Scientific/Engineering :: Image Processing",
2829
]
2930
requires-python = ">=3.9"

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# For more information about tox, see https://tox.readthedocs.io/en/latest/
22
[tox]
3-
envlist = py{39, 310,311,312,313}-{linux,macos,windows}
3+
envlist = py{310,311,312,313}-{linux,macos,windows}
44
isolated_build=true
55

66
[gh-actions]
77
python =
8-
3.9: py39
98
3.10: py310
109
3.11: py311
1110
3.12: py312

0 commit comments

Comments
 (0)