forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment_meson.yml
51 lines (51 loc) · 1003 Bytes
/
environment_meson.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
# To use:
# $ conda env create -f environment_meson.yml # `mamba` works too for this command
# $ conda activate scipy-meson
#
# Also used to build the `scipy-meson` Docker image via GitHub Actions
name: scipy-meson
channels:
- conda-forge
dependencies:
- python
- setuptools<60.0
- cython
- compilers
- meson
- ninja
- numpy
- openblas
- pkg-config # note: not available on Windows
- libblas=*=*openblas # helps avoid pulling in MKL
- pybind11
- pythran>=0.9.12
- conda-build
# For testing and benchmarking
- pytest
- pytest-cov
- pytest-xdist
- asv<0.5
# For type annotations
- mypy
- typing_extensions
# For building docs
- sphinx
- numpydoc
- ipython
- matplotlib
- pydata-sphinx-theme>=0.8.1
- sphinx-panels
- sphinx-tabs
# For linting
- flake8
# Some optional test dependencies
- mpmath
- gmpy2
- threadpoolctl
# For CLI
- rich-click
- click
# else Docker raises a warning
- pip
- pip:
- doit==0.35.0