Skip to content

Commit 9f0aeb2

Browse files
committed
Don't pull in libblas - depend on scipy instead.
1 parent 3d37dfe commit 9f0aeb2

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ jobs:
3737
pip install pytest flaky
3838
pip install -v -e .
3939
40-
- name: Install BLAS (Linux)
41-
if: startsWith(runner.os, 'Linux')
42-
run: sudo apt-get install -y libopenblas-dev
43-
4440
- name: Test with pytest
4541
run: |
4642
pytest --verbose --capture=no --log-level=info --log-cli-level=info

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
dependencies = [
2121
"llvmlite==0.38",
2222
"numpy",
23+
"scipy",
2324
"psutil",
2425
"pytz",
2526
"sortedcontainers",

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
llvmlite==0.38
22
numpy
3+
scipy
34
psutil
45
pytz
56
sortedcontainers

0 commit comments

Comments
 (0)