We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e6b4a4 commit 9ff0ac8Copy full SHA for 9ff0ac8
.evergreen/build-mac.sh
@@ -12,16 +12,10 @@ for VERSION in 3.7 3.8 3.9 3.10; do
12
PYTHON=/Library/Frameworks/Python.framework/Versions/$VERSION/bin/python3
13
rm -rf build
14
15
- # Install wheel if not already there.
16
- if ! $PYTHON -m wheel version; then
17
- createvirtualenv $PYTHON releasevenv
18
- WHEELPYTHON=python
19
- python -m pip install --upgrade wheel
20
- else
21
- WHEELPYTHON=$PYTHON
22
- fi
23
-
24
- $WHEELPYTHON setup.py bdist_wheel
+ createvirtualenv $PYTHON releasevenv
+ python -m pip install --upgrade wheel
+ python -m pip install setuptools==63.2.0
+ python setup.py bdist_wheel
25
deactivate || true
26
rm -rf releasevenv
27
0 commit comments