We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a052b commit 8dc19b4Copy full SHA for 8dc19b4
.github/workflows/ci-cvxpy.yml
@@ -17,7 +17,7 @@ jobs:
17
fail-fast: false
18
matrix:
19
os: [macos-latest] # Add ubuntu-latest when cvxpy pytest issue is solved
20
- numpy: ['numpy==1.26.0', numpy]
+ numpy: [numpy] # We used to also test version 1.26.0, but now cvxpy requires numpy 2
21
22
runs-on: ${{ matrix.os }}
23
@@ -65,4 +65,4 @@ jobs:
65
- name: Test CVXPY
66
run: |
67
python3 -m pip install --break-system-packages pytest hypothesis ${{ matrix.numpy }}
68
- (cd cvxpy/cvxpy/tests && python3 -m pytest -v .)
+ python -m pytest --pyargs cvxpy.tests
0 commit comments