diff --git a/.github/workflows/code_quality.yml b/.github/workflows/code_quality.yml index 752c229..47273ef 100644 --- a/.github/workflows/code_quality.yml +++ b/.github/workflows/code_quality.yml @@ -10,7 +10,7 @@ jobs: nox: strategy: matrix: - python_version: ["3.11.8", "3.12.2"] + python_version: ["3.11.9", "3.12.3"] nox_session: [tests, basics, examples] os: [ubuntu-latest, macos-latest, macos-14] install_uv: [0, 1] @@ -31,12 +31,12 @@ jobs: fi - name: Test with nox run: | - nox --python ${{ matrix.python_version }} --session ${{ matrix.nox_session }} -db ${{ matrix.install_uv == 1 && 'uv' || 'virtualenv' }} + nox -P ${{ matrix.python_version }} --session ${{ matrix.nox_session }} -db ${{ matrix.install_uv == 1 && 'uv' || 'virtualenv' }} pyright_and_ruff: strategy: matrix: - python_version: ["3.11.8", "3.12.2"] + python_version: ["3.11.9", "3.12.3"] runs-on: "ubuntu-latest" steps: - uses: actions/checkout@v4 diff --git a/.mise.toml b/.mise.toml index 06a5d5f..6cdbf30 100644 --- a/.mise.toml +++ b/.mise.toml @@ -2,4 +2,4 @@ python_compile = true [tools] -python = ["3.12.2", "3.11.8"] +python = ["3.12.3", "3.11.9"] diff --git a/noxfile.py b/noxfile.py index 1a9207f..5dc44dd 100644 --- a/noxfile.py +++ b/noxfile.py @@ -3,7 +3,7 @@ nox.options.error_on_external_run = True nox.options.stop_on_first_error -python_versions = ["3.11.8", "3.12.2"] +python_versions = ["3.11", "3.12"] @nox.session(python=python_versions)