Skip to content

Commit 4e5c91e

Browse files
committed
chore: add Python 3.14, drop 3.9
1 parent 074d53a commit 4e5c91e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: "ubuntu-latest"
1313
strategy:
1414
matrix:
15-
python-version: ["3.13", "3.12", "3.11", "3.10", 3.9, pypy-3.9]
15+
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10", pypy-3.9]
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Set up Python

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "flake8 plugin that integrates isort"
1212
keywords = ["pep8", "flake8", "python", "isort", "imports"]
1313
license = {file = "LICENSE"}
1414
readme = "README.rst"
15-
requires-python = ">=3.9"
15+
requires-python = ">=3.10"
1616
classifiers = [
1717
"Development Status :: 5 - Production/Stable",
1818
"Environment :: Console",
@@ -24,11 +24,11 @@ classifiers = [
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
2626
"Programming Language :: Python :: 3 :: Only",
27-
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
2928
"Programming Language :: Python :: 3.11",
3029
"Programming Language :: Python :: 3.12",
3130
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
3232
"Programming Language :: Python :: Implementation :: CPython",
3333
"Programming Language :: Python :: Implementation :: PyPy",
3434
"Topic :: Software Development",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ envlist =
44
format
55
lint
66
coverage
7-
py39
87
py310
98
py311
109
py312
1110
py313
11+
py314
1212
pypy3
1313

1414
[testenv:test]

0 commit comments

Comments
 (0)