Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Apr 16, 2021. It is now read-only.

Commit 33dd7c8

Browse files
committed
Merge pull request #10 from hmaarrfk/patch-2
use prefer binary for wheel building
1 parent 4053db4 commit 33dd7c8

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

config.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,16 @@ LOCAL_FT_COMMIT=5ad9b15
66

77
# Test arguments
88
NPROC=2
9-
PYTEST_ARGS="-ra --maxfail=1 --timeout=300 --durations=25 -n $NPROC"
9+
PYTEST_ARGS="-ra --maxfail=1000 --timeout=300 --durations=25 -n $NPROC"
1010

11+
function pip_opts {
12+
# Define extra pip arguments
13+
14+
# cryptography dropped 32 bit linux support.
15+
# the `--prefer-binary` flag encourages pip to use the latest wheel
16+
# that satisfies the requirements instead of the newest src
17+
echo "--prefer-binary"
18+
}
1119

1220
function pre_build {
1321
# Any stuff that you need to do before you start building the wheels

0 commit comments

Comments
 (0)