From d426309ffdcceadf353a01d7d5c0dc3337864177 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Fri, 7 Jan 2022 15:44:20 +0000 Subject: [PATCH] Try to avoid NumPy 1.21.5 on ppc64le build --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3802de8e8..a9b8feaa6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,6 +27,8 @@ matrix: - python: 3.7 env: - TOXENV=py37-test-deps + # NumPy 1.21.5 fails to compile: https://github.com/numpy/numpy/issues/20761 + - TOX_OPTS="--force-dep numpy!=1.21.5" - HDF5_VERSION=1.10.5 - HDF5_DIR=$HDF5_CACHE_DIR/$HDF5_VERSION - H5PY_ENFORCE_COVERAGE=yes @@ -39,6 +41,7 @@ matrix: arch: arm64 env: - TOXENV=py37-test-deps + - TOX_OPTS="" - HDF5_VERSION=1.10.5 - HDF5_DIR=$HDF5_CACHE_DIR/$HDF5_VERSION - H5PY_ENFORCE_COVERAGE=yes @@ -58,7 +61,7 @@ install: script: - if [[ $CIBW_ARCHS == aarch64 ]]; then python3 -m cibuildwheel --output-dir wheelhouse; fi - - tox + - tox $TOX_OPTS after_success: - python ci/upload_coverage.py