forked from gammapy/gammapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment-dev.yml
75 lines (71 loc) · 1.16 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
# 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.8
- pip
- astropy
- click
- cython
- numpy<1.23
- pydantic
- pyyaml
- regions>=0.5
- matplotlib>=3.4
- scipy
- iminuit>=2.8.0
# test dependencies
- codecov
- pytest=6
- pytest-astropy
- pytest-cov
- pytest-xdist
- coverage=6.2
- pytest-xdist
- requests
- tqdm
# extra dependencies
- healpy
- ipython
- jupyter
- jupyterlab
- naima
- pandas
- reproject
- sherpa
# dev dependencies
- black
- codespell
- flake8
- isort
- jinja2=3.0
- nbsphinx
- numdifftools
- pandoc
- pydocstyle
- pylint
- setuptools_scm
- sphinx
- sphinx-astropy
- sphinx-click
- sphinx-gallery
- sphinx-panels
- sphinx-copybutton
- pydata-sphinx-theme==0.8.1
- twine
- yamllint
- nbformat
- h5py
- ruamel.yaml
- pip:
- pytest-sphinx