diff --git a/commands/install.sh b/commands/install.sh deleted file mode 100755 index b9171547d5d648dbac19ef826961578c60e85de5..0000000000000000000000000000000000000000 --- a/commands/install.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/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 diff --git a/commands/install_with_pip.sh b/commands/install_with_pip.sh index 01b88a2af98a9fd65a83f106a04a628319557a7b..c00e27d5e29401fc30c0ce48dca867512474fc95 100755 --- a/commands/install_with_pip.sh +++ b/commands/install_with_pip.sh @@ -1,4 +1,5 @@ #!/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 . diff --git a/commands/install_with_pip_without_dependencies.sh b/commands/install_with_pip_without_dependencies.sh index 798c5c9521a88e56cbf66f9f5be4ff699e64ed91..db28e679de5f3511872251375e88091fa6355cd5 100755 --- a/commands/install_with_pip_without_dependencies.sh +++ b/commands/install_with_pip_without_dependencies.sh @@ -1,4 +1,5 @@ #!/bin/bash +# NOTE: this script needs revision. Does not work properly currently # Script to install binarycpython in the current venv using the pip commands diff --git a/commands/install_without_dependencies.sh b/commands/install_without_dependencies.sh index ae91f044267867b8afca156b9f6aa6f7944e97e4..bfabd775d161bc5bc6436f10fc68c204531222e5 100755 --- a/commands/install_without_dependencies.sh +++ b/commands/install_without_dependencies.sh @@ -1,4 +1,5 @@ #!/bin/bash +# NOTE: this script needs revision. Does not work properly currently # Script to install binarycpython in the current venv VERSION_NUMBER=$(cat "VERSION") diff --git a/commands/upload_to_pypi.sh b/commands/upload_to_pypi.sh index db8bb43d3ed5f702c3e78529df10800a5b891936..227ff46a8945b82c9694940733030c4d0f2c6fc3 100755 --- a/commands/upload_to_pypi.sh +++ b/commands/upload_to_pypi.sh @@ -1,4 +1,5 @@ #!/bin/bash +# NOTE: this script needs revision. Does not work properly currently # Get current version VERSION_NUMBER=$(cat "VERSION")