Commit 14ec0d11 authored by Matti Picus's avatar Matti Picus Committed by GitHub

Pin setuptools<60 to resolve CI build failures due to incorrect C compiler flags (GH-4510)

parent 4c658333
......@@ -16,7 +16,7 @@ jobs:
python-version: 3.8
- name: Install build dependencies
run: pip install -U setuptools pip wheel
run: pip install -U "setuptools<60" pip wheel
- name: Make sdist and Python wheel
run: make sdist pywheel
......
......@@ -69,7 +69,7 @@ elif [[ $PYTHON_VERSION == "3."[45]* ]]; then
python -m pip install wheel || exit 1
python -m pip install -r test-requirements-34.txt || exit 1
else
python -m pip install -U pip setuptools wheel || exit 1
python -m pip install -U pip "setuptools<60" wheel || exit 1
if [[ $PYTHON_VERSION != *"-dev" || $COVERAGE == "1" ]]; then
python -m pip install -r test-requirements.txt || exit 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment