File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
python/requirements/CI-complete Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,10 @@ commands:
13
13
# Install meson to the system packages so we can run it as root
14
14
pip install --upgrade pip wheel
15
15
sudo pip install meson
16
- pip install --user numpy #Needed for some build steps in requirements.txt
17
- pip install --user -r python/requirements/CI-complete/requirements.txt
16
+ # Needed for some build steps in requirements.txt, no blas as expensive to
17
+ # build on 32 bit
18
+ pip install --user numpy --config-settings=setup-args="-Dallow-noblas=true"
19
+ pip install --user -r python/requirements/CI-complete/requirements.txt --config-settings=setup-args="-Dallow-noblas=true"
18
20
# Remove tskit installed by msprime
19
21
pip uninstall tskit -y
20
22
echo 'export PATH=/home/circleci/.local/bin:$PATH' >> $BASH_ENV
Original file line number Diff line number Diff line change @@ -13,3 +13,4 @@ pytest-cov==4.1.0
13
13
pytest-xdist == 3.3.1
14
14
tszip == 0.2.2
15
15
xmlunittest == 0.5.0
16
+ llvmlite == 0.39.1
You can’t perform that action at this time.
0 commit comments