Skip to content

Commit fc54cbe

Browse files
authored
Merge pull request #132 from gforcada/py314
Add Python 3.14 support
2 parents 63c2773 + 5d5daec commit fc54cbe

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
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.10"]
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Set up Python
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: "ubuntu-latest"
3737
strategy:
3838
matrix:
39-
python-version: [3.12]
39+
python-version: ["3.13"]
4040
steps:
4141
- uses: actions/checkout@v4
4242
- name: Set up Python

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ Changelog
1818
- Add support for Python 3.13.
1919
[gforcada]
2020

21+
- Drop python 3.9 support and add Python 3.14 support.
22+
[gforcada]
23+
24+
- Bump pypy minimum version to 3.10.
25+
2126
2.5.0 (2024-04-09)
2227
------------------
2328

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "Check for python builtins being used as variables or parameters"
1212
keywords = ["pep8", "flake8", "python", ]
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",
@@ -23,11 +23,11 @@ classifiers = [
2323
"Programming Language :: Python",
2424
"Programming Language :: Python :: 3",
2525
"Programming Language :: Python :: 3 :: Only",
26-
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
2928
"Programming Language :: Python :: 3.12",
3029
"Programming Language :: Python :: 3.13",
30+
"Programming Language :: Python :: 3.14",
3131
"Programming Language :: Python :: Implementation :: CPython",
3232
"Programming Language :: Python :: Implementation :: PyPy",
3333
"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)