forked from gammapy/gammapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment-dev.yml
83 lines (79 loc) · 1.28 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
# 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
- sherpa
variables:
PYTHONNOUSERSITE: "1"
dependencies:
# core dependencies
- python=3.9
- pip
- astropy
- click
- cython
- numpy>1.20
- pydantic<2.0
- pyyaml
- regions>=0.5
- matplotlib>=3.4
- scipy!=1.10
- iminuit>=2.8.0
- extension-helpers
# test dependencies
- codecov
- pytest=6
- pytest-astropy
- pytest-cov
- pytest-xdist
- coverage
- requests
- tqdm
# extra dependencies
- healpy
- ipython
- jupyter
- jupyterlab
- naima
- pandas
- reproject
- sherpa
# dev dependencies
- black
- codespell
- flake8
- isort
- jinja2
- jupytext
- nbsphinx
- numdifftools
- pandoc
- pydocstyle
- pylint
- setuptools_scm
- sphinx
- sphinx-astropy
- sphinx-click
- sphinx-gallery<0.13
- sphinx-panels
- sphinx-copybutton
- tox
- pydata-sphinx-theme==0.8.1
- pre-commit
- twine
- yamllint
- nbformat
- h5py
- ruamel.yaml
- cffconvert
- pyinstrument
- memray
- pip:
- pytest-sphinx
- ray
- PyGithub