Skip to content

Commit

Permalink
Merge pull request #45 from robsdedude/feat/python3.13
Browse files Browse the repository at this point in the history
Python 3.13 support
  • Loading branch information
robsdedude authored Jan 15, 2025
2 parents ba1ae37 + a1c7bdb commit 69b20fc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,15 @@ jobs:
- run: pip install -Ur requirements.txt
- uses: pre-commit/[email protected]
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest]
include:
- {python: "3.7", os: "ubuntu-22.04"}

runs-on: ${{ matrix.os }}
name: tests (Python ${{ matrix.python }})
steps:
- uses: actions/checkout@v3
- name: Setup Python
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The plugin has two components:


## Installation and Usage
This is a plugin for `flake8`. It supports Python 3.7 - 3.12.
This is a plugin for `flake8`. It supports Python 3.7 - 3.13.
Refer to the documentation of `flake8` on how to run it on your code:
https://flake8.pycqa.org/en/latest/

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[tox]
envlist = py37,py38,py39,py310,py311
envlist = py37,py38,py39,py310,py311,py312,py313
# for Python 3.7 support (https://github.com/tox-dev/tox/issues/3416#issuecomment-2426989929)
requires = virtualenv<20.22.0

[testenv]
# install pytest in the virtualenv where commands will be executed
Expand Down

0 comments on commit 69b20fc

Please sign in to comment.