PYTHON-2375 Remove macos system python workaround for missing wheel package (#491)

This commit is contained in:
Shane Harvey 2020-09-28 15:00:40 -07:00 committed by GitHub
parent cccf37f556
commit 8afbc645a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,18 +18,7 @@ for VERSION in 2.7 3.4 3.5 3.6 3.7 3.8; do
fi
rm -rf build
# Install wheel if not already there.
if ! $PYTHON -m wheel version; then
createvirtualenv $PYTHON releasevenv
WHEELPYTHON=python
pip install --upgrade wheel
else
WHEELPYTHON=$PYTHON
fi
$WHEELPYTHON setup.py bdist_wheel
deactivate || true
rm -rf releasevenv
$PYTHON setup.py bdist_wheel
# Test that each wheel is installable.
for release in dist/*; do