Skip to content

Commit 8afbc64

Browse files
authored
PYTHON-2375 Remove macos system python workaround for missing wheel package (mongodb#491)
1 parent cccf37f commit 8afbc64

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

.evergreen/build-mac.sh

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,7 @@ for VERSION in 2.7 3.4 3.5 3.6 3.7 3.8; do
1818
fi
1919
rm -rf build
2020

21-
# Install wheel if not already there.
22-
if ! $PYTHON -m wheel version; then
23-
createvirtualenv $PYTHON releasevenv
24-
WHEELPYTHON=python
25-
pip install --upgrade wheel
26-
else
27-
WHEELPYTHON=$PYTHON
28-
fi
29-
30-
$WHEELPYTHON setup.py bdist_wheel
31-
deactivate || true
32-
rm -rf releasevenv
21+
$PYTHON setup.py bdist_wheel
3322

3423
# Test that each wheel is installable.
3524
for release in dist/*; do

0 commit comments

Comments
 (0)