We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b5a366 commit c189f01Copy full SHA for c189f01
1 file changed
tools/esp_merge_bin.py
@@ -16,7 +16,10 @@
16
missing_pkgs = required_pkgs - installed_pkgs
17
18
if missing_pkgs:
19
- env.Execute('$PYTHONEXE -m pip install dulwich --global-option="--pure" --use-pep517')
+ # As of pip v23.1 the global-options flag has been removed and we should use the config-settings flag instead.
20
+ print("Installing dependencies...")
21
+ print("Note: If you see an error about an unknown '--config-settings' option, please update pip to the latest version.")
22
+ env.Execute('$PYTHONEXE -m pip install dulwich --config-settings "--build-option=--pure" --use-pep517')
23
24
from dulwich import porcelain
25
from dulwich.repo import Repo
0 commit comments