Skip to content

Commit

Permalink
Temporarily Pin setuptools<=60.0 in Wheel Build (#173)
Browse files Browse the repository at this point in the history
Temporarily pin setuptools version due to a recent bug, which will be fix in their later updates
See: pypa/setuptools#3532 and numpy/numpy#22135
  • Loading branch information
weiliw-amz authored Aug 19, 2022
1 parent 069f7c7 commit 18a1cc5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/build_pypi_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ echo "pip: $($PIP --version)"

# Install dependencies
echo "Install dependencies..."
$PIP install setuptools wheel twine auditwheel
# Temporarily pin setuptools version due to a recent bug, which will be fix in their later updates
# See: https://github.com/pypa/setuptools/issues/3532
# https://github.com/numpy/numpy/issues/22135
$PIP install 'setuptools<=60.0.*' wheel twine auditwheel

# Install OpenBLAS
# Using Numpy pre-build OpenBLAS lib v0.3.19 hosted on Anaconda
Expand Down

0 comments on commit 18a1cc5

Please sign in to comment.