From 186722b11b6f5a57fcbca8bf26fc4ec3e5b4b41e Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Fri, 9 May 2025 11:12:25 -0700 Subject: [PATCH] Install nox after setuptools This fixes GitHub Action workflows. Fixes: 9f74d156b3fc2a97a902 ("Use `nox` instead of `tox`") Signed-off-by: Enji Cooper --- .github/workflows/main.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index b8b8ad09..512a2005 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -34,6 +34,9 @@ jobs: run: | # workaround for 3.12, SEE: https://github.com/pypa/setuptools/issues/3661#issuecomment-1813845177 pip install --upgrade setuptools + - name: Install nox + run: | + pip install nox==2025.05.01 - name: Lint with flake8 if: matrix.python-version == ${{ env.DEFAULT_PYTHON }} run: |