forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.yml
40 lines (40 loc) · 812 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
# To use:
# $ conda env create -f environment.yml # `mamba` works too for this command
# $ conda activate scipy-dev
#
# Also used to build the `scipy-dev` Docker image via GitHub Actions
name: scipy-dev
channels:
- conda-forge
dependencies:
- python
- cython
- compilers
- numpy
- openblas
- libblas=*=*openblas # helps avoid pulling in MKL
- pybind11
- pythran
- conda-build # to allow `conda develop .`
# For testing and benchmarking
- pytest
- pytest-cov
- pytest-xdist
- asv
# For type annotations
- mypy
- typing_extensions
# For building docs
- sphinx
- numpydoc=1.1.0
- ipython
- matplotlib
- pydata-sphinx-theme
- sphinx-panels
# For linting
- pycodestyle
- flake8
# Some optional test dependencies
- mpmath
- gmpy2
- scikit-umfpack