Skip to content

Commit df4ba71

Browse files
committed
Release v0.1.3
1 parent 4a6ae28 commit df4ba71

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

src/release/scripts/prep-release.sh

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -93,27 +93,27 @@ build_wheels() {
9393
rm -rf build
9494
}
9595

96-
# Ensure working directory is clean
97-
enforce_latest_code
96+
# # Ensure working directory is clean
97+
# enforce_latest_code
9898

9999
# Update and validate the version number
100100
update_and_validate_version
101101

102102
# Update version in version.py
103103
sed -e "s/{{ version }}/$version/" "$version_template_file" > "$output_version_file"
104104

105-
# Acquire the wheels for different OS
106-
for python_version in "${python_versions[@]}"; do
107-
pyenv local $python_version
108-
build_wheels Darwin x86_64
109-
build_wheels Darwin arm64
110-
build_wheels Linux x86_64
111-
build_wheels Linux aarch64
112-
build_wheels Windows amd64
113-
done
114-
115-
# Build Source as well incase wheels fails, pypi can install this as backup (standard practice)
116-
python3 -m build --sdist
105+
# # Acquire the wheels for different OS
106+
# for python_version in "${python_versions[@]}"; do
107+
# pyenv local $python_version
108+
# build_wheels Darwin x86_64
109+
# build_wheels Darwin arm64
110+
# build_wheels Linux x86_64
111+
# build_wheels Linux aarch64
112+
# build_wheels Windows amd64
113+
# done
114+
115+
# # Build Source as well incase wheels fails, pypi can install this as backup (standard practice)
116+
# python3 -m build --sdist
117117

118118
printf "Press ENTER to edit the RELEASE-NOTES in your default editor...\n"
119119
read -r _ignore

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# TODO: Refactor so SDK_BUILD_NUMBER can be inside and not hardcoded in defaults.py
2-
SDK_VERSION = "0.1.2"
2+
SDK_VERSION = "0.1.3"

0 commit comments

Comments
 (0)