From 18619dd1695e86283c85b2296ecf0c908f56c9ee Mon Sep 17 00:00:00 2001 From: Alec Jacobson Date: Tue, 29 Oct 2024 23:46:27 -0400 Subject: [PATCH] this continues to be excruciating --- .github/workflows/wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 596fc48e..3ac9b948 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -91,9 +91,9 @@ jobs: - name: Build wheels run: | if [[ "$RUNNER_OS" == "Windows" ]]; then - set PIP_CONSTRAINT=constraints.txt && python -m cibuildwheel --output-dir wheelhouse + set PIP_CONSTRAINT=$GITHUB_WORKSPACE/constraints.txt && python -m cibuildwheel --output-dir wheelhouse else - PIP_CONSTRAINT=constraints.txt python -m cibuildwheel --output-dir wheelhouse + PIP_CONSTRAINT=$GITHUB_WORKSPACE/constraints.txt python -m cibuildwheel --output-dir wheelhouse fi # Upload binaries to github