From 17a58e13d51ffaffc0633fc0f742fdf5ef9034e6 Mon Sep 17 00:00:00 2001 From: Robert Yokota Date: Sat, 15 Mar 2025 17:45:55 -0700 Subject: [PATCH 1/6] Fix nox --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d0cc15..e0fa70b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,6 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install test dependencies - run: python -m pip install --upgrade nox + uses: wntrblm/nox@2024.04.15 - name: Test run: python -m nox -s tests-${{ matrix.python }} From a616069fb016c5dd65784333982dd41584731ce4 Mon Sep 17 00:00:00 2001 From: Robert Yokota Date: Sat, 15 Mar 2025 17:50:24 -0700 Subject: [PATCH 2/6] Revert "Fix nox" This reverts commit 17a58e13d51ffaffc0633fc0f742fdf5ef9034e6. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e0fa70b..3d0cc15 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,6 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install test dependencies - uses: wntrblm/nox@2024.04.15 + run: python -m pip install --upgrade nox - name: Test run: python -m nox -s tests-${{ matrix.python }} From f9f392c1a19fac77f05152f41f82fe7e32c277ac Mon Sep 17 00:00:00 2001 From: Robert Yokota Date: Sat, 15 Mar 2025 17:53:30 -0700 Subject: [PATCH 3/6] Fix nox --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d0cc15..aba8e57 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,6 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install test dependencies - run: python -m pip install --upgrade nox + run: python -m pip install nox==2024.04.15 - name: Test run: python -m nox -s tests-${{ matrix.python }} From 2b16a51cd4114e9839352ac2b27836c913fede82 Mon Sep 17 00:00:00 2001 From: Robert Yokota Date: Sat, 15 Mar 2025 18:08:51 -0700 Subject: [PATCH 4/6] Upgrade nox --- .github/workflows/test.yml | 2 +- noxfile.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aba8e57..3d0cc15 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,6 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install test dependencies - run: python -m pip install nox==2024.04.15 + run: python -m pip install --upgrade nox - name: Test run: python -m nox -s tests-${{ matrix.python }} diff --git a/noxfile.py b/noxfile.py index 5f361b2..bf685e4 100644 --- a/noxfile.py +++ b/noxfile.py @@ -15,9 +15,6 @@ nox.options.sessions = ["lint"] -# Define the minimal nox version required to run -nox.options.needs_version = ">= 2024.3.2" - @nox.session def lint(session): From 6aaf8964340d94a59deb09cd4c70e8a394ee5159 Mon Sep 17 00:00:00 2001 From: Robert Yokota Date: Sat, 15 Mar 2025 18:12:03 -0700 Subject: [PATCH 5/6] Revert "Upgrade nox" This reverts commit 2b16a51cd4114e9839352ac2b27836c913fede82. --- .github/workflows/test.yml | 2 +- noxfile.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d0cc15..aba8e57 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,6 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install test dependencies - run: python -m pip install --upgrade nox + run: python -m pip install nox==2024.04.15 - name: Test run: python -m nox -s tests-${{ matrix.python }} diff --git a/noxfile.py b/noxfile.py index bf685e4..5f361b2 100644 --- a/noxfile.py +++ b/noxfile.py @@ -15,6 +15,9 @@ nox.options.sessions = ["lint"] +# Define the minimal nox version required to run +nox.options.needs_version = ">= 2024.3.2" + @nox.session def lint(session): From c8ed0b6724cea2603d53e5ee38a8a8b484ead920 Mon Sep 17 00:00:00 2001 From: Robert Yokota Date: Sat, 15 Mar 2025 18:12:59 -0700 Subject: [PATCH 6/6] Fix noxfile --- .github/workflows/test.yml | 2 +- noxfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aba8e57..3d0cc15 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,6 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install test dependencies - run: python -m pip install nox==2024.04.15 + run: python -m pip install --upgrade nox - name: Test run: python -m nox -s tests-${{ matrix.python }} diff --git a/noxfile.py b/noxfile.py index 5f361b2..d1c8d85 100644 --- a/noxfile.py +++ b/noxfile.py @@ -16,7 +16,7 @@ nox.options.sessions = ["lint"] # Define the minimal nox version required to run -nox.options.needs_version = ">= 2024.3.2" +nox.needs_version = ">= 2024.3.2" @nox.session