1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-25 02:50:08 +03:00

Revert "F #3823: Update building and installation on Python bindings (#2914)"

This reverts commit 37b621338000886604d1ee1e883d9808efad5c83.
This commit is contained in:
Tino Vázquez 2024-02-05 10:10:11 +01:00
parent 37b6213380
commit aa22857d50
No known key found for this signature in database
GPG Key ID: 14201E424D02047E

View File

@ -15,7 +15,6 @@
# Use full path to ensure virtualenv compatibility
PYTHON = $(shell which python3)
PIP = ${shell which pip3}
GDS = $(shell which generateDS)
PWD = $(shell pwd)
@ -41,10 +40,10 @@ clean:
rm -rf build dist pyone/bindings *.egg-info doc
dist:
${PIP} wheel --no-deps -w dist .
${PYTHON} setup.py sdist bdist_wheel
install:
${PIP} install ${PWD}/dist/*.whl ${root}
${PYTHON} setup.py install ${root}
doc:
mkdir -p doc