diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f47646..7617e1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,12 +18,13 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" - pypy-3.9 - pypy-3.10 steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} allow-prereleases: true @@ -37,6 +38,6 @@ jobs: - name: Test with tox run: | tox --parallel 0 - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: file: ./coverage.xml diff --git a/tox.ini b/tox.ini index a28db7d..6614ecf 100644 --- a/tox.ini +++ b/tox.ini @@ -8,6 +8,7 @@ python = 3.10: py310 3.11: py311 3.12: py312 + 3.13: py313 pypy-3.9: pypy3 pypy-3.10: pypy3