From 35a68d028ad05e1203f69758a2bb87aee5d09f39 Mon Sep 17 00:00:00 2001 From: mattip Date: Sun, 20 Dec 2020 10:19:45 +0200 Subject: [PATCH] generalize test for any pypy3 version --- .github/workflows/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.sh b/.github/workflows/build.sh index c8a892b0f..464a72ceb 100755 --- a/.github/workflows/build.sh +++ b/.github/workflows/build.sh @@ -1,6 +1,6 @@ if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then - if [[ "$MB_PYTHON_VERSION" == "pypy3.6-7.3" ]]; then + if [[ "$MB_PYTHON_VERSION" == pypy3* ]]; then # for https://foss.heptapod.net/pypy/pypy/-/issues/3229 # TODO remove when that is fixed brew install tcl-tk @@ -10,7 +10,7 @@ if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew remove --ignore-dependencies webp zstd xz libtiff curl fi -if [[ "$MB_PYTHON_VERSION" == "pypy3.6-7.3" ]]; then +if [[ "$MB_PYTHON_VERSION" == pypy3* ]]; then if [[ "$TRAVIS_OS_NAME" != "macos-latest" ]]; then MB_ML_VER="2010" DOCKER_TEST_IMAGE="multibuild/xenial_$PLAT"