Skip to content

Commit

Permalink
Add Python 3.13 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiX committed Jan 9, 2025
1 parent 0bc752b commit e9edb0b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'

steps:
- uses: actions/checkout@v4
Expand Down
10 changes: 6 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
[tox]
envlist = py38, py39, py310, flake8
envlist = py38, py39, py310, py311, py312, py313, flake8
skipsdist = True

[gh-actions]
python =
3.8: py38, flake8
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313, flake8

[testenv]
commands =
Expand All @@ -29,11 +32,10 @@ commands =
deps =
flake8
flake8-coding
flake8-future-import

[flake8]
max-line-length = 79
ignore = E127,E128,E241,FI12,FI14,FI15,FI50,FI51,FI53,FI54,FI55,W503
ignore = E127,E128,E241,W503
require-code = True
min-version = 3.8

Expand Down

0 comments on commit e9edb0b

Please sign in to comment.