From 41d847dacbc9ec344d10c90d360c684bba764750 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Fri, 31 May 2019 09:33:29 -0500 Subject: [PATCH 1/2] binary only for cryptography --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 835ecc1..4fa226f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -82,7 +82,9 @@ before_install: - CONTAINER="wheels"; - BUILD_COMMIT=$BUILD_COMMIT; - BUILD_DEPENDS="$NP_BUILD_DEP Cython==0.28.2" - - TEST_DEPENDS="$NP_TEST_DEP pytest==3.8.2 pytest-xdist pytest-mock moto hypothesis wheel==0.31.1" + # binary-only for cryptogrpahy. See https://github.com/pandas-dev/pandas/issues/26589 + # Moto picks it up, and they don't distribute 32-bit wheels. + - TEST_DEPENDS="$NP_TEST_DEP pytest==3.8.2 pytest-xdist pytest-mock moto hypothesis wheel==0.31.1 cryptography --binary-only=cryptography" - source multibuild/common_utils.sh - source multibuild/travis_steps.sh - before_install From 122eaa9b8c497bb24b89d7f517e62faba1596ca4 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Fri, 31 May 2019 11:18:50 -0500 Subject: [PATCH 2/2] fixup --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4fa226f..a37b814 100644 --- a/.travis.yml +++ b/.travis.yml @@ -84,7 +84,7 @@ before_install: - BUILD_DEPENDS="$NP_BUILD_DEP Cython==0.28.2" # binary-only for cryptogrpahy. See https://github.com/pandas-dev/pandas/issues/26589 # Moto picks it up, and they don't distribute 32-bit wheels. - - TEST_DEPENDS="$NP_TEST_DEP pytest==3.8.2 pytest-xdist pytest-mock moto hypothesis wheel==0.31.1 cryptography --binary-only=cryptography" + - TEST_DEPENDS="$NP_TEST_DEP pytest==3.8.2 pytest-xdist pytest-mock moto hypothesis wheel==0.31.1 cryptography --only-binary=cryptography" - source multibuild/common_utils.sh - source multibuild/travis_steps.sh - before_install