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 6d6ce5f commit 3af386bCopy full SHA for 3af386b
guests/python/Justfile
@@ -134,10 +134,18 @@ python-site-packages: download-python-sdk
134
fi
135
136
python -m venv "{{PYTHON_TMP_VENV}}"
137
+
138
+ # Notes:
139
+ # - "only binary" means "only wheels, no sdist", i.e. we don't need to run any Python lib build code
140
+ # - "implementation=py" ensures that we use the most neutral wheel possible, i.e. not actual binary code
141
"{{PYTHON_TMP_VENV}}"/bin/pip install \
142
--disable-pip-version-check \
143
+ --no-deps \
144
--ignore-installed \
145
+ --implementation=py \
146
--isolated \
147
+ --only-binary=:all: \
148
+ --python-version={{PYTHON_VERSION_FULL}} \
149
--requirement=requirements.txt \
150
--target="{{PYTHON_SITE_PACKAGES}}"
151
0 commit comments