Skip to content

Commit

Permalink
Fix CI: Remove --install-option.
Browse files Browse the repository at this point in the history
This is deprecated in pip 23 which we switched to recently.  --install option was passed to setuptools, but pip is now using wheel install only from what I understand. --pre signals using pre-releases when available, and it's also a pip option. Lets pass it directly to pip and see what happens.

More info:
pypa/pip#11358
https://discuss.python.org/t/passing-command-line-arguments-to-pip-install-after-install-options-deprecation/22981/6
  • Loading branch information
fredvd authored and thet committed Apr 21, 2023
1 parent da85401 commit 1595546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-c constraints.txt
-e .[test,docs] --install-option="--pre"
-e .[test,docs] --pre

# WSGI: A system for configuration of WSGI web components in declarative .ini format.
Paste
Expand Down

0 comments on commit 1595546

Please sign in to comment.