From 76350bbbe98bb0020244636f8e418ff029d3f0e1 Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Mon, 30 Oct 2023 20:17:01 +0100 Subject: [PATCH] Harmonise tox and CI python versions --- .github/workflows/bindings-python.yml | 2 +- bindings/python/tox.ini | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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}