Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.13", "3.12", "3.11", "3.10", 3.9, pypy-3.9]
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10", "pypy-3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: [3.12]
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ Changelog
- Add support for Python 3.13.
[gforcada]

- Drop python 3.9 support and add Python 3.14 support.
[gforcada]

- Bump pypy minimum version to 3.10.

2.5.0 (2024-04-09)
------------------

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description = "Check for python builtins being used as variables or parameters"
keywords = ["pep8", "flake8", "python", ]
license = {file = "LICENSE"}
readme = "README.rst"
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
Expand All @@ -23,11 +23,11 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ envlist =
format
lint
coverage
py39
py310
py311
py312
py313
py314
pypy3

[testenv:test]
Expand Down