There was an error while loading. Please reload this page.
allow_editables
1 parent 76d1ef7 commit 75b8cafCopy full SHA for 75b8caf
1 file changed
.github/workflows/pip-tools.yaml
@@ -39,7 +39,9 @@ jobs:
39
40
- name: Install piptools and invoke
41
# Install pip-tools from Git and pip>=26 to get the "--uploaded-prior-to" flag.
42
- run: python -m pip install --upgrade "pip>=26" "pip-tools @ git+https://github.com/jazzband/pip-tools" invoke
+ # pip<26.2 because pip 26.2 made "allow_editables" a required argument and pip-tools breaks:
43
+ # https://github.com/jazzband/pip-tools/issues/2437
44
+ run: python -m pip install --upgrade "pip>=26,<26.2" "pip-tools @ git+https://github.com/jazzband/pip-tools" invoke
45
46
- name: Update dependencies from requirements/*.txt
47
run: invoke requirements.update
0 commit comments