Try to fix Python wheel management on CI (#874)

We've been getting some errors on Linux which seem like they might be
related to a pinned `wheel` dependency. Apparently I originally added
this dependency to CI and I have no idea why I wrote down a `==`
dependency for it, so let's try not pinning and see what happens.
This commit is contained in:
Alex Crichton
2020-01-30 18:23:40 +01:00
committed by GitHub
parent 83ff0150b4
commit 43c2da04b6

View File

@@ -220,7 +220,7 @@ jobs:
with:
python-version: '3.6'
architecture: x64
- run: $CENTOS pip3 install setuptools wheel==0.31.1 setuptools-rust
- run: $CENTOS pip3 install setuptools wheel setuptools-rust
shell: bash
- run: (cd crates/misc/py && $CENTOS $python setup.py bdist_wheel)
shell: bash
@@ -242,7 +242,7 @@ jobs:
- name: Build Python 3.7
run: $CENTOS sh ci/setup_centos6_python3.sh 3.7.3
if: matrix.os == 'ubuntu-latest'
- run: $CENTOS pip3 install setuptools wheel==0.31.1 setuptools-rust auditwheel
- run: $CENTOS pip3 install setuptools wheel setuptools-rust auditwheel
shell: bash
- run: (cd crates/misc/py && $CENTOS $python setup.py bdist_wheel)
shell: bash
@@ -264,7 +264,7 @@ jobs:
- name: Build Python 3.8
run: $CENTOS sh ci/setup_centos6_python3.sh 3.8.0
if: matrix.os == 'ubuntu-latest'
- run: $CENTOS pip3 install setuptools wheel==0.31.1 setuptools-rust auditwheel
- run: $CENTOS pip3 install setuptools wheel setuptools-rust auditwheel
shell: bash
- run: (cd crates/misc/py && $CENTOS $python setup.py bdist_wheel)
shell: bash