Skip to content
Snippets Groups Projects
Commit b1f89a5f authored by dh00601's avatar dh00601
Browse files

added notes to files as they are not working properly and need to be checked

parent 8e786686
No related branches found
No related tags found
No related merge requests found
#!/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
python3 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
pip3 uninstall -y binarycpython
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
#!/bin/bash
# NOTE: this script needs revision. Does not work properly currently
# Script to install binarycpython in the current venv using the pip commands
......@@ -9,4 +10,4 @@ echo "installing binarcpython version $VERSION_NUMBER"
# pip uninstall binarycpython
# python setup.py build --force
# python setup.py sdist
pip install -v .
\ No newline at end of file
pip install -v .
#!/bin/bash
# NOTE: this script needs revision. Does not work properly currently
# Script to install binarycpython in the current venv using the pip commands
......
#!/bin/bash
# NOTE: this script needs revision. Does not work properly currently
# Script to install binarycpython in the current venv
VERSION_NUMBER=$(cat "VERSION")
......
#!/bin/bash
# NOTE: this script needs revision. Does not work properly currently
# Get current version
VERSION_NUMBER=$(cat "VERSION")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment