From 7053f806dc2ee9d3e7c89a01b3c3bdd3a17d3684 Mon Sep 17 00:00:00 2001 From: Ernesto Arbitrio Date: Wed, 20 Nov 2024 14:02:04 -0500 Subject: [PATCH 1/2] codecov action update, python 3.12 support --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdda0c530..84bf9725a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -36,7 +36,7 @@ jobs: run: tox -e typechecker - name: Test with tox run: tox - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.xml From a273103f3a5a8a7ca54538597e6bdcb758f54b20 Mon Sep 17 00:00:00 2001 From: Ernesto Arbitrio Date: Wed, 20 Nov 2024 14:03:37 -0500 Subject: [PATCH 2/2] tox update --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 1306aecad..a4c4155a0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36, py37, py38, py39, py310, py311, coverage, lint +envlist = py36, py37, py38, py39, py310, py311, py312, coverage, lint [gh-actions] python = @@ -9,6 +9,7 @@ python = 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312 [testenv] basepython = @@ -18,6 +19,7 @@ basepython = py39: python3.9 py310: python3.10 py311: python3.11 + py312: python3.12 py3: python3.6 commands =