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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
# To set up a development environment using conda run:
#
# conda env create -f environment.yml
# conda activate mpl-dev
# pip install --verbose --no-build-isolation --editable ".[dev]"
#
---
name: mpl-dev
channels:
- conda-forge
dependencies:
# runtime dependencies
- cairocffi
- contourpy>=1.0.1
- cycler>=0.10.0
- fonttools>=4.22.0
- importlib-resources>=3.2.0
- kiwisolver>=1.3.1
- pybind11>=2.13.2
- meson-python>=0.13.1
- numpy
- pillow>=8
- pkg-config
- pygobject
- pyparsing>=2.3.1
- pyqt
- python>=3.10
- python-dateutil>=2.1
- setuptools_scm
- wxpython
# building documentation
- colorspacious
- graphviz
- ipython
- ipywidgets
- numpydoc>=1.0
- packaging>=20
- pydata-sphinx-theme~=0.15.0
- pyyaml
- sphinx>=3.0.0,!=6.1.2
- sphinx-copybutton
- sphinx-gallery>=0.12.0
- joblib # needed for sphinx-gallery[parallel]
- sphinx-design
- sphinx-tags>=0.4.0
- pystemmer
- pip
- pip:
- mpl-sphinx-theme~=3.8.0
- sphinxcontrib-svg2pdfconverter>=1.1.0
- sphinxcontrib-video>=0.2.1
- pikepdf
# testing
- black<24
- coverage
- flake8>=3.8
- flake8-docstrings>=1.4.0
- gtk4
- ipykernel
- nbconvert[execute]!=6.0.0,!=6.0.1,!=7.3.0,!=7.3.1
- nbformat!=5.0.0,!=5.0.1
- pandas!=0.25.0
- psutil
- pre-commit
- pydocstyle>=5.1.0
- pytest!=4.6.0,!=5.4.0,!=8.1.0
- pytest-cov
- pytest-rerunfailures
- pytest-timeout
- pytest-xdist
- tornado
- pytz
- tox
|