diff --git a/.github/workflows/bindings-python.yml b/.github/workflows/bindings-python.yml index 32543d9794..48c0f60c93 100644 --- a/.github/workflows/bindings-python.yml +++ b/.github/workflows/bindings-python.yml @@ -77,7 +77,7 @@ jobs: matrix: # os: [windows-latest, macos-latest, ubuntu-latest] os: [windows-latest, ubuntu-latest] - python-version: ["3.10"] + python-version: ["3.10", "3.11", "3.12"] steps: - name: Checkout the Source Code diff --git a/bindings/python/tox.ini b/bindings/python/tox.ini index 6bde2729d1..e261e437c0 100644 --- a/bindings/python/tox.ini +++ b/bindings/python/tox.ini @@ -1,13 +1,13 @@ [tox] # can't install from sdist because local pyo3 repo can't be included in the sdist skipsdist = true -envlist = py{39,310,311} +envlist = py{310,311,312} [gh-actions] python = - 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312 [testenv] description = Run the unit tests under {basepython}