From d134c2503cd419eb94b8ec94512eb9e87c230ef2 Mon Sep 17 00:00:00 2001 From: Tom Bannink Date: Tue, 18 Jun 2024 11:31:59 +0200 Subject: [PATCH] Run `pip-compile` in Windows release --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 30f3cd47..eaa91682 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -297,7 +297,9 @@ jobs: $Env:CC_OPT_FLAGS = "/O2" python --version - python -m pip install wheel setuptools numpy six --no-cache-dir + python -m pip install wheel setuptools numpy six pip-tools --no-cache-dir + # This is needed because the requirements on windows are different than on other systems + pip-compile --strip-extras --no-emit-index-url --allow-unsafe larq_compute_engine/requirements.in "" | python configure.py