forked from pymc-devs/pytensor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
54 lines (54 loc) · 916 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>=3.10
- compilers
- numpy>=1.17.0,<2
- scipy>=0.14,<1.14.0
- filelock>=3.15
- etuples
- logical-unification
- miniKanren
- cons
- pydeprecate
# Intel BLAS
- mkl
- mkl-service
- libblas=*=*mkl
# numba backend
- numba>=0.57
# For testing
- coveralls
- diff-cover
- mypy
- types-setuptools
- pytest
- pytest-cov
- pytest-xdist
- pytest-benchmark
- pytest-mock
- pip:
- pytest-sphinx
# For building docs
- sphinx>=5.1.0,<6
- sphinx_rtd_theme
- pygments
- pydot
- ipython
- pymc-sphinx-theme
# code style
- ruff
# developer tools
- pandas # required to run mypy script
- pre-commit
- packaging
# optional
- cython
- graphviz
- pydot