1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

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

Signed-off-by: Jakub Walczak <jakub.walczak@cmcc.it>
(cherry picked from commit 3cb5f5be64fbd49823b92d63c8414407658cbf93)
This commit is contained in:
Jakub Walczak 2024-02-02 15:09:52 +01:00 committed by Tino Vázquez
parent 0ef438bb8c
commit 37b6213380
No known key found for this signature in database
GPG Key ID: 14201E424D02047E

View File

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