From aa22857d50d2753e24826c91a74da5009fd096cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tino=20V=C3=A1zquez?= Date: Mon, 5 Feb 2024 10:10:11 +0100 Subject: [PATCH] Revert "F #3823: Update building and installation on Python bindings (#2914)" This reverts commit 37b621338000886604d1ee1e883d9808efad5c83. --- src/oca/python/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/oca/python/Makefile b/src/oca/python/Makefile index f8c2cf291c..ba6dd02237 100644 --- a/src/oca/python/Makefile +++ b/src/oca/python/Makefile @@ -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