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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
# Conda environment for Gammapy development
#
# Install: conda env create -f environment-dev.yml
# Update: conda env update -f environment-dev.yml
# Activate: conda activate gammapy-dev
# Deactivate: conda deactivate
name: gammapy-dev
channels:
- conda-forge
- https://cxc.cfa.harvard.edu/conda/sherpa # c.f. https://sherpa.readthedocs.io/en/latest/install.html
variables:
PYTHONNOUSERSITE: "1"
dependencies:
# core dependencies
- python=3.11
- pip
- astropy
- click>8.0
- cython
- numpy>1.20
- pydantic>=2.5
- pyyaml
- regions>=0.5
- matplotlib>=3.4
- scipy!=1.10
- iminuit>=2.8.0
- extension-helpers
# test dependencies
- codecov
- pytest
- pytest-astropy
- pytest-cov
- pytest-xdist
- coverage
- requests
- tqdm
# extra dependencies
- healpy
- ipython
- jupyter
- jupyterlab
- naima
- pandas
- reproject
- ultranest
- numba
# dev dependencies
- black=22.6.0
- codespell
- flake8
- isort
- jinja2
- jupytext
- nbsphinx
- numdifftools
- pandoc
- pydocstyle
- pylint
- setuptools_scm
- sherpa>=4.17
- sphinx
- sphinx-click
- sphinx-gallery
- sphinx-design
- sphinx-copybutton
- tox
- pydata-sphinx-theme
- pre-commit
- twine
- yamllint
- nbformat
- h5py
- ruamel.yaml
- towncrier
# incompatible with current jupyter, results in broken env when present
# use e.g. pipx if you need cffconvert
# - cffconvert
- pyinstrument
- memray
- pip:
- pytest-sphinx
- ray[default]>=2.9
- PyGithub
- pypandoc
|