-
Notifications
You must be signed in to change notification settings - Fork 4
/
environment.yml
58 lines (58 loc) · 1.53 KB
/
environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# To use:
# $ conda env create -f environment.yml
# $ conda activate graphblas-algorithms-dev
#
# Or use mamba instead of conda.
#
# pre-commit should be set up once after the repo is cloned (see .pre-commit-config.yaml).
# In the `graphblas-algorithms-dev` environment, run:
# $ pre-commit install
#
# At times, one may need to use a development version of networkx or python-graphblas.
# To do this, you will need to uninstall, git clone, and run setup.py develop. For example:
#
# $ conda remove --force python-graphblas
# $ git clone [email protected]:python-graphblas/python-graphblas.git
# $ cd python-graphblas
# $ python setup.py develop --no-deps
#
# $ conda remove --force networkx
# $ git clone [email protected]:networkx/networkx.git
# $ cd networkx
# $ python setup.py develop --no-deps
name: graphblas-algorithms-dev
channels:
- conda-forge
- nodefaults # Only install packages from conda-forge for faster solving
dependencies:
- python
- python-graphblas
- networkx
# python-graphblas default dependencies
- donfig
- numba
- python-suitesparse-graphblas
- pyyaml
# networkx default dependencies
- matplotlib
- pandas
- scipy
# networkx extra dependencies
- lxml
- pydot
- pygraphviz
- sympy
# For updating algorithm list in README
- rich
# For linting
- pre-commit
# For testing
- pytest-cov
# For benchmarking
- requests
# For debugging
- icecream
- ipykernel
- ipython
# For type annotations
- mypy