forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add conda environment-dev.yml for developers
- Loading branch information
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# To set up a development environment using conda run: | ||
# | ||
# conda env create -f environment.yml | ||
# conda activate mpl-dev | ||
# pip install -e . | ||
# | ||
name: mpl-dev | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- cairocffi | ||
- cycler>=0.10.0 | ||
- fonttools>=4.22.0 | ||
- kiwisolver>=1.0.1 | ||
- numpy>=1.17 | ||
- pillow>=6.2 | ||
- pygobject | ||
- pyparsing | ||
- pyqt | ||
- python-dateutil>=2.1 | ||
- setuptools | ||
- setuptools_scm | ||
- wxpython | ||
# building documentation | ||
- colorspacious | ||
- graphviz | ||
- ipython | ||
- ipywidgets | ||
- numpydoc>=0.8 | ||
- pydata-sphinx-theme | ||
- scipy | ||
- sphinx>=1.8.1,!=2.0.0 | ||
- sphinx-copybutton | ||
- pip | ||
- pip: | ||
- sphinxcontrib-svg2pdfconverter | ||
# b41e328 is PR 808 which adds the image_srcset directive. When this is | ||
# released with sphinx gallery, we can change to the last release w/o this feature: | ||
# sphinx-gallery>0.9 | ||
- git+git://github.com/sphinx-gallery/sphinx-gallery@b41e328#egg=sphinx-gallery | ||
# testing | ||
- coverage | ||
- flake8>=3.8 | ||
- flake8-docstrings>=1.4.0 | ||
- gtk3 | ||
- ipykernel | ||
- nbconvert[execute]!=6.0.0,!=6.0.1 | ||
- nbformat!=5.0.0,!=5.0.1 | ||
- pandas!=0.25.0 | ||
- pikepdf | ||
- pydocstyle>=5.1.0 | ||
- pytest!=4.6.0,!=5.4.0 | ||
- pytest-cov | ||
- pytest-rerunfailures | ||
- pytest-timeout | ||
- pytest-xdist | ||
- tornado | ||
- pytz |