forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenvironment_meson.yml
More file actions
42 lines (42 loc) · 848 Bytes
/
Copy pathenvironment_meson.yml
File metadata and controls
42 lines (42 loc) · 848 Bytes
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
# 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-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
# 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
- flake8
# Some optional test dependencies
- mpmath
- gmpy2
- threadpoolctl