Skip to content
Snippets Groups Projects
install.sh 552 B
Newer Older
#!/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

# Go into a directory that doesnt contain 'binarycpython' so pip will uninstall the one in the venv, not the local one.
dh00601's avatar
dh00601 committed
cd src
dh00601's avatar
dh00601 committed
cd ../

# Create build, sdist and install it into the venv
python3 setup.py build --force
python3 setup.py sdist
pip3 install -v dist/binarycpython-$VERSION_NUMBER.tar.gz