Skip to content

Commit 9ff0ac8

Browse files
authored
PYTHON-3407 macos release failing on Python 3.8 AttributeError: 'Distribution' object has no attribute 'convert_2to3_doctests' (#1044)
1 parent 1e6b4a4 commit 9ff0ac8

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.evergreen/build-mac.sh

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,10 @@ for VERSION in 3.7 3.8 3.9 3.10; do
1212
PYTHON=/Library/Frameworks/Python.framework/Versions/$VERSION/bin/python3
1313
rm -rf build
1414

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
15+
createvirtualenv $PYTHON releasevenv
16+
python -m pip install --upgrade wheel
17+
python -m pip install setuptools==63.2.0
18+
python setup.py bdist_wheel
2519
deactivate || true
2620
rm -rf releasevenv
2721

0 commit comments

Comments
 (0)