diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4663ca13..134dc296 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: "3.11" - - uses: pre-commit/action@v2.0.3 + - uses: pre-commit/action@v3.0.1 tests: name: "Test with python ${{ matrix.python-version }} on ${{ matrix.os }}" runs-on: ${{ matrix.machine }} @@ -29,9 +29,11 @@ jobs: machine: ubuntu-22.04 - python-version: "3.11" machine: ubuntu-22.04 + - python-version: "3.12" + machine: ubuntu-22.04 steps: - - uses: "actions/checkout@v3" - - uses: "actions/setup-python@v4" + - uses: "actions/checkout@v4" + - uses: "actions/setup-python@v5" with: python-version: "${{ matrix.python-version }}" - name: "Install dependencies" diff --git a/tox.ini b/tox.ini index 6ba2e1f6..6d84a599 100644 --- a/tox.ini +++ b/tox.ini @@ -10,6 +10,7 @@ envlist = py39 py310 py311 + py312 [testenv] skip_missing_interpreters = True @@ -26,3 +27,4 @@ python = 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312