From 1c3d49b5dc16119a22f15daa91dd380e85240b24 Mon Sep 17 00:00:00 2001 From: Di Chen Date: Tue, 24 Jun 2025 13:52:46 +0800 Subject: [PATCH] Temporary fix for broken pip-compile [RHELDST-31877] * revert the previous attempt in workflow setting * pin pip version in tox.ini --- .github/workflows/pip-compile.yml | 2 +- tox.ini | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pip-compile.yml b/.github/workflows/pip-compile.yml index 880082a8..2cb1f9b4 100644 --- a/.github/workflows/pip-compile.yml +++ b/.github/workflows/pip-compile.yml @@ -15,7 +15,7 @@ jobs: python-version: "3.11" - name: Install tox - run: pip install "pip<=25.0" tox + run: pip install tox - name: pip-compile uses: technote-space/create-pr-action@v2 diff --git a/tox.ini b/tox.ini index bbf2db17..18bfbcc6 100644 --- a/tox.ini +++ b/tox.ini @@ -132,7 +132,9 @@ addopts = -v relative_files = true [testenv:pip-compile] -deps = pip-tools +deps = + pip-tools + pip<=25.0 # Temporary fix for RHELDST-31877 basepython = python3.11 skip_install = true skipsdist = true