@@ -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
100100update_and_validate_version
101101
102102# Update version in version.py
103103sed -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
118118printf " Press ENTER to edit the RELEASE-NOTES in your default editor...\n"
119119read -r _ignore
0 commit comments