diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bd7eac2..aab3f84 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,7 @@ jobs: - '3.10' - '3.11' - '3.12' + - '3.13' steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index 0ee8ce5..07113d2 100644 --- a/tox.ini +++ b/tox.ini @@ -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 = @@ -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