From 414874a26f8e8b0d590190a45105040626bfa5a2 Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Wed, 18 Sep 2024 22:29:48 -0300 Subject: [PATCH 1/2] Enable Python 3.13 in tox.ini --- tox.ini | 1 + 1 file changed, 1 insertion(+) 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 From f52599d3dba6a6ef0b8f97410b9ff7ca938638b1 Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Wed, 18 Sep 2024 22:31:17 -0300 Subject: [PATCH 2/2] Enable Python 3.13 and update action versions in ci.yml --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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