diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index ddcf1256a203..a531169fdc96 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -37,7 +37,7 @@ jobs: .github/workflows/publish-requirements.txt sparse-checkout-cone-mode: false - name: Install Python dependencies - run: pip install --require-hashes -r publish-requirements.txt + run: pip install --require-hashes -r .github/workflows/publish-requirements.txt - run: | echo "OIDC_AUDIENCE=pypi" >> $GITHUB_ENV diff --git a/.github/workflows/wheel-builder.yml b/.github/workflows/wheel-builder.yml index 5019b041d971..d0cda3660b6c 100644 --- a/.github/workflows/wheel-builder.yml +++ b/.github/workflows/wheel-builder.yml @@ -234,7 +234,7 @@ jobs: sparse-checkout-cone-mode: false - run: ${{ matrix.PYTHON.BIN_PATH }} -m venv venv - name: Install Python dependencies - run: venv/bin/pip install --require-hashes -r build-requirements.txt + run: venv/bin/pip install --require-hashes -r .github/workflows/build-requirements.txt - run: mkdir wheelhouse - name: Build the wheel run: | @@ -324,7 +324,7 @@ jobs: .github/workflows/build-requirements.txt sparse-checkout-cone-mode: false - name: Install Python dependencies - run: python -m pip install --require-hashes -r build-requirements.txt + run: python -m pip install --require-hashes -r .github/workflows/build-requirements.txt - run: mkdir wheelhouse - run: | if [ -n "${{ matrix.PYTHON.ABI_VERSION }}" ]; then