forked from gammapy/gammapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment-dev.yml
84 lines (80 loc) · 1.34 KB
/
environment-dev.yml
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
# 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
variables:
PYTHONNOUSERSITE: "1"
dependencies:
# core dependencies
- python=3.11
- pip
- astropy
- click
- 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
# dev dependencies
- black=22.6.0
- codespell
- flake8
- isort
- jinja2
- jupytext
- nbsphinx
- numdifftools
- pandoc
- pydocstyle
- pylint
- setuptools_scm
- sphinx
- sphinx-astropy
- sphinx-click
- sphinx-gallery
- sphinx-design
- sphinx-copybutton
- tox
- pydata-sphinx-theme
- pre-commit
- twine
- yamllint
- nbformat
- h5py
- ruamel.yaml
- cffconvert
- pyinstrument
- memray
- pip:
- sherpa>=4.17
- pytest-sphinx
- ray[default]>=2.9
- PyGithub
- pypandoc