Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packaging/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ setup_wheel_python() {

}

setup_build_version 0.0.4
version=$(cat "version.txt")
setup_build_version "$version"
setup_wheel_python
python setup.py clean
if [[ "$(uname)" == Darwin ]]; then
Expand All @@ -64,4 +65,3 @@ else
echo "Unsupported"
exit 1
fi

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


def _get_version():
version = "0.1.0a0"
version = open("./version.txt").read().strip()
sha = "Unknown"
try:
sha = (
Expand Down
1 change: 1 addition & 0 deletions version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.5a0