We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41a07e7 commit 7b5a63eCopy full SHA for 7b5a63e
1 file changed
.github/workflows/build-with-clang.yml
@@ -55,7 +55,7 @@ jobs:
55
56
- name: Install mkl_random dependencies
57
run: |
58
- pip install cython setuptools">=70.1" pytest pytest-cov wheel
+ pip install cython setuptools">=70.1" wheel
59
pip install ${{ matrix.numpy_build_version }}
60
61
- name: List oneAPI folder content
@@ -68,11 +68,11 @@ jobs:
68
export CC=$CMPLR_ROOT/bin/icx
69
export CXX=$CMPLR_ROOT/bin/icpx
70
export CFLAGS="${CFLAGS} -fno-fast-math -O2"
71
- pip install -e .[test] --no-build-isolation --no-deps --verbose
+ pip install -e . --no-build-isolation --no-deps --verbose
72
73
- name: Run mkl_random tests
74
75
source ${{ env.ONEAPI_ROOT }}/setvars.sh
76
# Test with NumPy<2 for now
77
- pip install numpy"<2"
+ pip install numpy"<2" pytest
78
pytest -s -v --pyargs mkl_random
0 commit comments