Skip to content

Commit d23a7f3

Browse files
committed
Drop support for EOL Python 3.9
1 parent 6d34a03 commit d23a7f3

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
11+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1212

1313
steps:
1414
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ classifiers = [
1919
"Intended Audience :: Developers",
2020
"Programming Language :: Python",
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",
@@ -29,7 +28,7 @@ classifiers = [
2928
"Topic :: Multimedia :: Graphics",
3029
"Topic :: Software Development :: Libraries :: Python Modules",
3130
]
32-
requires-python = "~=3.9"
31+
requires-python = "~=3.10"
3332
dependencies = [
3433
"colorama; sys_platform == 'win32'",
3534
"deprecation",
@@ -98,7 +97,7 @@ exclude_lines = [
9897
skip_covered = true
9998

10099
[tool.ruff]
101-
target-version = "py39"
100+
target-version = "py310"
102101
exclude = ["migrations"]
103102
lint.select = ["ALL"]
104103
lint.ignore = [

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
[tox]
22
distribute = False
3-
envlist = py{39,310,311,312,313,314}-{pil,png,none}
3+
envlist = py{310,311,312,313,314}-{pil,png,none}
44
skip_missing_interpreters = 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)