From 87407c59b48864bc185a848d11e2e61df5e5e63c Mon Sep 17 00:00:00 2001 From: matham Date: Thu, 15 Oct 2020 03:23:41 -0400 Subject: [PATCH] Stop building wheels for RPi stretch (#7152) * Don't build for py35 as it's not supported [build wheel linux]. * Python 3.5 is not supported anymore [build wheel armv7l]. --- .ci/build-wheels-linux.sh | 2 +- .github/workflows/rpi_wheels.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/build-wheels-linux.sh b/.ci/build-wheels-linux.sh index ca4479408..d1e0a020d 100755 --- a/.ci/build-wheels-linux.sh +++ b/.ci/build-wheels-linux.sh @@ -43,7 +43,7 @@ make distclean; cd /io; for PYBIN in /opt/python/*3*/bin; do - if [[ $PYBIN != *"34"* ]]; then + if [[ $PYBIN != *"34"* && $PYBIN != *"35"* ]]; then "${PYBIN}/pip" install --upgrade setuptools pip; "${PYBIN}/pip" install --upgrade cython nose pygments docutils; KIVY_SPLIT_EXAMPLES=1 USE_X11=1 USE_SDL2=1 USE_PANGOFT2=0 USE_GSTREAMER=0 PKG_CONFIG_PATH="$HOME/kivy_build/lib/pkgconfig" "${PYBIN}/pip" wheel --no-deps . -w dist/; diff --git a/.github/workflows/rpi_wheels.yml b/.github/workflows/rpi_wheels.yml index 477b7c5fe..9ccdf9598 100644 --- a/.github/workflows/rpi_wheels.yml +++ b/.github/workflows/rpi_wheels.yml @@ -18,7 +18,7 @@ jobs: if: github.event_name == 'schedule' || (github.event_name == 'create' && github.event.ref_type == 'tag') || contains(github.event.head_commit.message, '[build wheel]') || contains(github.event.head_commit.message, '[build wheel armv7l]') || contains(github.event.pull_request.title, '[build wheel]') || contains(github.event.pull_request.title, '[build wheel armv7l]') strategy: matrix: - docker_images: ['balenalib/armv7hf-debian:stretch', 'balenalib/armv7hf-debian:buster'] + docker_images: ['balenalib/armv7hf-debian:buster'] steps: - uses: actions/checkout@v2 - name: Generate version metadata