Skip to content

Commit 034eda0

Browse files
mroeschkemeeseeksmachine
authored andcommitted
Backport PR pandas-dev#55185: CI: Fix no BLAS error in 32 bit build
1 parent 42914f3 commit 034eda0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/unit-tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,13 @@ jobs:
230230
git -c user.email="[email protected]" merge --no-commit my_ref_name
231231
fi
232232
- name: Build environment and Run Tests
233+
# https://github.com/numpy/numpy/issues/24703#issuecomment-1722379388
233234
run: |
234235
/opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev
235236
. ~/virtualenvs/pandas-dev/bin/activate
236237
python -m pip install --no-cache-dir -U pip wheel setuptools meson[ninja]==1.2.1 meson-python==0.13.1
237-
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.3.2 pytest-xdist>=2.2.0 pytest-asyncio>=0.17 hypothesis>=6.46.1
238+
python -m pip install numpy --config-settings=setup-args="-Dallow-noblas=true"
239+
python -m pip install --no-cache-dir versioneer[toml] cython python-dateutil pytz pytest>=7.3.2 pytest-xdist>=2.2.0 pytest-asyncio>=0.17 hypothesis>=6.46.1
238240
python -m pip install --no-cache-dir --no-build-isolation -e .
239241
python -m pip list --no-cache-dir
240242
export PANDAS_CI=1

0 commit comments

Comments
 (0)