Skip to content

Commit dc47602

Browse files
authored
Backport PR #59553: CI: Uninstall nomkl & 32 bit Interval tests (#59570)
* Backport PR #59553: CI: Uninstall nomkl & 32 bit Interval tests * Update pandas/tests/indexes/interval/test_interval_tree.py * Update pandas/tests/indexes/interval/test_interval_tree.py * Update pandas/tests/indexing/interval/test_interval_new.py * Update pandas/tests/indexing/interval/test_interval_new.py
1 parent 71ad173 commit dc47602

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/actions/build_pandas/action.yml

+7
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ runs:
2828
fi
2929
shell: bash -el {0}
3030

31+
- name: Uninstall nomkl
32+
run: |
33+
if conda list nomkl | grep nomkl 1>/dev/null; then
34+
conda remove nomkl -y
35+
fi
36+
shell: bash -el {0}
37+
3138
- name: Build Pandas
3239
run: |
3340
export CFLAGS="$CFLAGS ${{ inputs.cflags_adds }}"

0 commit comments

Comments
 (0)