Skip to content

Commit bedc4d4

Browse files
committed
require 3.9+, no longer run tests on 3.8 EOL
1 parent 0d91ae6 commit bedc4d4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
1919
strategy:
2020
matrix:
21-
python-version: ['3.8', '3.11', '3.12', '3.13']
21+
python-version: ['3.9', '3.11', '3.12', '3.13']
2222
platform: [ubuntu-latest]
2323
include: # Only test on the oldest and latest supported stable Python on macOS and Windows.
2424
- platform: macos-latest
25-
python-version: 3.8
25+
python-version: 3.9
2626
- platform: windows-latest
27-
python-version: 3.8
27+
python-version: 3.9
2828
- platform: macos-latest
29-
python-version: 3.12
29+
python-version: 3.13
3030
- platform: windows-latest
31-
python-version: 3.12
31+
python-version: 3.13
3232
steps:
3333
- uses: actions/[email protected]
3434
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
'Topic :: Multimedia :: Graphics :: Editors :: Vector-Based',
4949
'Topic :: Software Development :: Libraries :: Python Modules',
5050
],
51-
python_requires='>=3.7',
51+
python_requires='>=3.9',
5252
zip_safe=True,
5353
)
5454

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.8
3-
envlist = py3{8,9,10,11}-cov,coverage
3+
envlist = py3{9,10,11,12,13}-cov,coverage
44
skip_missing_interpreters = true
55

66
[testenv]

0 commit comments

Comments
 (0)