forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
environment.yml
49 lines (49 loc) · 973 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
41
42
43
44
45
46
47
48
49
# To use:
#
# $ conda env create -f environment.yml # `mamba` works too for this command
# $ conda activate numpy-dev
#
name: numpy-dev
channels:
- conda-forge
dependencies:
- python=3.11 #need to pin to avoid issues with builds
- cython>=3.0
- compilers
- openblas
- nomkl
- setuptools==65.5.1
- ninja
- pkg-config
- meson-python
- pip
- spin=0.8 # Unpin when spin 0.9.1 is released
- ccache
# For testing
- pytest
- pytest-cov
- pytest-xdist
- hypothesis
# For type annotations
- typing_extensions>=4.2.0 # needed for python < 3.10
- mypy=1.11.1
# For building docs
- sphinx>=4.5.0
- sphinx-copybutton
- sphinx-design
- numpydoc=1.4.0
- ipython
- scipy
- pandas
- matplotlib
- pydata-sphinx-theme>=0.15.2
- doxygen
- towncrier
# NOTE: breathe 4.33.0 collides with sphinx.ext.graphviz
- breathe>4.33.0
# For linting
- pycodestyle=2.12.1
- gitpython
# Used in some tests
- cffi
- pytz