# 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.9 #need to pin to avoid issues with builds
- cython>=3.0
- compilers
- openblas
- nomkl
- setuptools=59.2.0
- ninja
- pkg-config
- meson-python
- pip
- spin
- ccache
# For testing
- pytest
- pytest-cov
- pytest-xdist
- hypothesis
# For type annotations
- typing_extensions>=4.2.0 # needed for python < 3.10
- mypy=1.5.1
# For building docs
- sphinx>=4.5.0
- sphinx-design
- numpydoc=1.4.0
- ipython
- scipy
- pandas
- matplotlib
- pydata-sphinx-theme=0.13.3
- doxygen
# NOTE: breathe 4.33.0 collides with sphinx.ext.graphviz
- breathe>4.33.0
# For linting
- pycodestyle=2.7.0
- gitpython
# Used in some tests
- cffi
- pytz