From 43c2da04b6dd4a37fa5134f33acec62ccf71ffdd Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 30 Jan 2020 18:23:40 +0100 Subject: [PATCH] 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. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3a84d26e79..cbd518b27d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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