fix: pin pip to <26 in Update requirements.lock workflow (pip-tools compatibility)

This commit is contained in:
Stephan Schellworth 2026-02-03 10:34:48 +01:00
parent a94e22c7de
commit 5b5ecea4c3

View file

@ -28,7 +28,7 @@ jobs:
python-version: '3.11'
- name: Install pip-tools
run: python -m pip install --upgrade pip pip-tools
run: python -m pip install --upgrade "pip>=24,<26" pip-tools
- name: Generate requirements.lock
run: pip-compile requirements.txt -o requirements.lock