Skip to content

Commit b46994d

Browse files
authored
fix pip, pip-tools version (#8039)
Fixing issue with workflow. Ignore the approval workflow for now.
1 parent c5a5a5d commit b46994d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,21 @@ pr: init dev schema black-check
6363
# to consider combining these files again
6464
update-reproducible-linux-reqs:
6565
python3.11 -m venv venv-update-reproducible-linux
66-
venv-update-reproducible-linux/bin/pip install --upgrade pip-tools pip
66+
venv-update-reproducible-linux/bin/pip install pip==24.0 pip-tools==7.4.1
6767
venv-update-reproducible-linux/bin/pip install -r requirements/base.txt
6868
venv-update-reproducible-linux/bin/pip-compile --generate-hashes --allow-unsafe -o requirements/reproducible-linux.txt
6969

7070
update-reproducible-mac-reqs:
7171
python3.11 -m venv venv-update-reproducible-mac
72-
venv-update-reproducible-mac/bin/pip install --upgrade pip-tools pip
72+
venv-update-reproducible-mac/bin/pip install pip==24.0 pip-tools==7.4.1
7373
venv-update-reproducible-mac/bin/pip install -r requirements/base.txt
7474
venv-update-reproducible-mac/bin/pip-compile --generate-hashes --allow-unsafe -o requirements/reproducible-mac.txt
7575

7676
# note that this should be run on a windows environment with python3.8 as default interpreter
7777
update-reproducible-win-reqs:
7878
python -m venv venv-update-reproducible-win
7979
.\venv-update-reproducible-win\Scripts\activate
80-
python.exe -m pip install --upgrade pip-tools pip
80+
python.exe -m pip install pip==24.0 pip-tools==7.4.1
8181
pip install -r requirements\base.txt
8282
pip-compile --generate-hashes --allow-unsafe -o requirements\reproducible-win.txt
8383

0 commit comments

Comments
 (0)