Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/deploytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ jobs:
${{ runner.os }}-pyprod-
- name: Install pip-tools and python dependencies
run: |
python -m pip install --upgrade pip
# Pin pip to 25.2 to avoid incompatibility with pip-tools and 25.3
# see https://github.com/jazzband/pip-tools/issues/2252
python -m pip install pip==25.2
pip install pip-tools
Comment on lines +66 to 67

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd recommend doing this in one command — this way the depresolver will take into account all user requests together and the second pip install has a lower chance of overriding what the first one chose.

pip-sync requirements.txt
- name: Use pnpm
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pythontest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ jobs:
${{ runner.os }}-pytest-
- name: Install pip-tools and python dependencies
run: |
python -m pip install --upgrade pip
# Pin pip to 25.2 to avoid incompatibility with pip-tools and 25.3
# see https://github.com/jazzband/pip-tools/issues/2252
python -m pip install pip==25.2
pip install pip-tools
pip-sync requirements.txt requirements-dev.txt
- name: Test pytest
Expand Down