Skip to content

Commit 01c8f70

Browse files
committed
Try using environment.yml
1 parent 74346e7 commit 01c8f70

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,14 @@ jobs:
2121
with:
2222
auto-update-conda: true
2323
python-version: ${{ matrix.python-version }}
24+
environment-file: continuous_integration/environment.yml
2425
channels: conda-forge
26+
activate-environment: suitesparse-graphblas
27+
- name: Build
2528
run: |
2629
conda info
30+
conda config --show
2731
conda list
28-
conda install -c conda-forge cffi cython numpy graphblas=4.0.3 pytest coverage black flake8 # TODO: environment.yml
2932
python setup.py build_ext --inplace
3033
python setup.py develop
3134
- name: Test
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: suitesparse-graphblas
2+
channels:
3+
- conda-forge
4+
- defaults
5+
dependencies:
6+
- graphblas=4.0.3
7+
- cffi
8+
- cython
9+
- numpy
10+
- pytest
11+
- coverage
12+
- black
13+
- flake8

0 commit comments

Comments
 (0)