blob: 607aeb231167312b6526d267b3f5b467402f6300 (
plain)
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
|
# 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
- cython
- compilers
- openblas
- nomkl
# For testing
- pytest
- pytest-cov
- pytest-xdist
- hypothesis
# For type annotations
- mypy=0.812
- typing_extensions
# For building docs
- sphinx=4.0.1
- numpydoc=1.1.0
- ipython
- scipy
- pandas
- matplotlib
- pydata-sphinx-theme
# For linting
- pycodestyle=2.7.0
- gitpython
# Used in some tests
- cffi
- pytz
|