forked from pymc-devs/pytensor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.yml
54 lines (54 loc) · 853 Bytes
/
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
# To use:
#
# $ conda env create -f environment.yml # `mamba` works too for this command
# $ conda activate pytensor-dev
#
name: pytensor-dev
channels:
- conda-forge
dependencies:
- python
- compilers
- numpy>=1.17.0
- scipy>=0.14
- filelock
- etuples
- logical-unification
- miniKanren
- cons
- pydeprecate
# Intel BLAS
- mkl
- mkl-service
- libblas=*=*mkl
# numba backend
- numba>=0.55
- numba-scipy
# For testing
- coveralls
- diff-cover
- pytest
- pytest-cov
- pytest-xdist
- pytest-benchmark
# For building docs
- sphinx>=5.1.0,<6
- sphinx_rtd_theme
- pygments
- pydot
- ipython
# code style
- black
- isort
# For linting
- flake8
- pep8
- pyflakes
# developer tools
- pre-commit
- packaging
- typing_extensions
# optional
- cython
- graphviz
- pydot