forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
56 lines (56 loc) · 1.24 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
# Please refer to https://scipy.github.io/devdocs/building/index.html
# To use:
# $ conda env create -f environment.yml # `mamba` works too for this command
# $ conda activate scipy-dev
#
name: scipy-dev
channels:
- conda-forge
dependencies:
- python
- cython
- compilers # Currently unavailable for Windows. Comment out this line and download Rtools and add <path>\ucrt64\bin\ to your path: https://cran.r-project.org/bin/windows/Rtools/rtools40.html
- meson
- meson-python
- ninja
- numpy
- openblas
- pkg-config
- libblas=*=*openblas # helps avoid pulling in MKL
- pybind11
# scipy.datasets dependency
- pooch
# ---
- pythran
# For testing and benchmarking
- pytest
- pytest-cov
- pytest-xdist
- pytest-timeout
- asv<0.5
# For type annotations
- mypy
- typing_extensions
- types-psutil
# For building docs
- sphinx
- numpydoc
- ipython
- setuptools<67.3 # avoid pkg_resources deprecation warnings from MPL/scikit-umfpack
- matplotlib
- pydata-sphinx-theme==0.9.0
- sphinx-design
- jupytext
- myst-nb
# Some optional test dependencies
- mpmath
- gmpy2
- threadpoolctl
# For CLI
- rich-click
- click
- doit>=0.36.0
- pydevtool
# For linting
- ruff
- cython-lint