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 18e6863 commit 660ba20Copy full SHA for 660ba20
.github/workflows/ci.yml
@@ -151,9 +151,8 @@ jobs:
151
uses: actions/setup-python@v2
152
with:
153
python-version: 3.8
154
- - name: Install gfortran
155
- run: |
156
- sudo apt install -y gfortran
+ - name: Install OpenBLAS
+ run: sudo apt install --yes libopenblas-dev
157
- name: Install Rust
158
uses: actions-rs/toolchain@v1
159
examples/linalg/Cargo.toml
@@ -11,4 +11,4 @@ crate-type = ["cdylib"]
11
[dependencies]
12
pyo3 = { version = "0.15", features = ["extension-module"] }
13
numpy = { path = "../.." }
14
-ndarray-linalg = { version = "0.14.1", features = ["openblas-static"] }
+ndarray-linalg = { version = "0.14.1", features = ["openblas-system"] }
0 commit comments