Skip to content

Commit a5587a7

Browse files
Ian Schweermaresb
Ian Schweer
authored andcommitted
Add new env file
1 parent 7fd8cbd commit a5587a7

File tree

2 files changed

+57
-2
lines changed

2 files changed

+57
-2
lines changed

environment-osx-arm64.yml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# To use:
2+
#
3+
# $ conda env create -f environment.yml # `mamba` works too for this command
4+
# $ conda activate pytensor-dev
5+
#
6+
name: pytensor-dev
7+
channels:
8+
- conda-forge
9+
dependencies:
10+
- python=3.10
11+
- compilers
12+
- numpy>=1.17.0,<2
13+
- scipy>=0.14,<1.14.0
14+
- filelock>=3.15
15+
- etuples
16+
- logical-unification
17+
- miniKanren
18+
- cons
19+
- pydeprecate
20+
# Intel BLAS
21+
- libblas=*=*accelerate
22+
# numba backend
23+
- numba>=0.57
24+
# For testing
25+
- coveralls
26+
- diff-cover
27+
- mypy
28+
- types-setuptools
29+
- pytest
30+
- pytest-cov
31+
- pytest-xdist
32+
- pytest-benchmark
33+
- pytest-mock
34+
- pip:
35+
- pytest-sphinx
36+
# For building docs
37+
- sphinx>=5.1.0,<6
38+
- sphinx_rtd_theme
39+
- pygments
40+
- pydot
41+
- ipython
42+
- pymc-sphinx-theme
43+
- sphinx-design
44+
# code style
45+
- ruff
46+
# developer tools
47+
- pandas # required to run mypy script
48+
- pre-commit
49+
- packaging
50+
# optional
51+
- cython
52+
- graphviz
53+
- pydot

environment.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: pytensor-dev
77
channels:
88
- conda-forge
99
dependencies:
10-
- python=3.10
10+
- python>=3.10
1111
- compilers
1212
- numpy>=1.17.0,<2
1313
- scipy>=0.14,<1.14.0
@@ -18,7 +18,9 @@ dependencies:
1818
- cons
1919
- pydeprecate
2020
# Intel BLAS
21-
- libblas=*=*accelerate
21+
- mkl
22+
- mkl-service
23+
- libblas=*=*mkl
2224
# numba backend
2325
- numba>=0.57
2426
# For testing

0 commit comments

Comments
 (0)