From e9f4bc25ab05f394926bf7093db52855b9133edf Mon Sep 17 00:00:00 2001 From: Shabeeb Khalid Date: Fri, 13 Dec 2024 15:04:59 +0200 Subject: [PATCH] Fix pip-compile ci job --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2e9c8e3..dbaf6d6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,11 @@ jobs: uses: actions/setup-python@v5 with: python-version: "3.11" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install -e ".[dev]" + python -m pip install tox-gh-actions==2.12.0 - name: Regenerate requirements.txt run: tox -e pip-compile - name: Check if requirements.txt is up-to-date