From 75a1f63244f890d627d231e19e9ffc4102819133 Mon Sep 17 00:00:00 2001 From: dh00601 <dh00601@surrey.ac.uk> Date: Wed, 29 Dec 2021 13:45:04 +0000 Subject: [PATCH] cleaning up the installation scripts --- install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 3f523fd26..f204a7922 100755 --- a/install.sh +++ b/install.sh @@ -1,14 +1,18 @@ #!/bin/bash # Script to install binarycpython in the current venv - VERSION_NUMBER=$(cat "VERSION") echo "installing binarcpython version $VERSION_NUMBER" +# Clean up all the stuff from before python setup.py clean --all + +# Go into a directory that doesnt contain 'binarycpython' so pip will uninstall the one in the venv, not the local one. cd src pip uninstall -y binarycpython cd ../ + +# Create build, sdist and install it into the venv python setup.py build --force python setup.py sdist pip install -v dist/binarycpython-$VERSION_NUMBER.tar.gz -- GitLab