From 734d6f2962857edfa3e2d5dd2f1b9cf703bef388 Mon Sep 17 00:00:00 2001 From: Yash Pankhania Date: Mon, 23 Sep 2024 13:25:35 +1000 Subject: [PATCH] change compile method --- .github/workflows/compile_requirements.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compile_requirements.yaml b/.github/workflows/compile_requirements.yaml index bf708eb3..ba7ffc0d 100644 --- a/.github/workflows/compile_requirements.yaml +++ b/.github/workflows/compile_requirements.yaml @@ -27,9 +27,9 @@ jobs: pip install pip-tools && \ echo 'Installed pip-tools!'; \ echo 'Compiling from requirements.in'; \ - pip-compile requirements.in > requirements.txt && \ + pip-compile requirements.in && \ echo 'Compiling from requirements-dev.in'; \ - pip-compile --output-file=requirements-dev.txt requirements-dev.in requirements.in" + pip-compile requirements-dev.in" - name: Commit updated requirements files run: |