-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathenvironment.yml
More file actions
50 lines (49 loc) · 1021 Bytes
/
environment.yml
File metadata and controls
50 lines (49 loc) · 1021 Bytes
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
---
# A conda environment with all useful package for simtools developers
name: simtools-dev
channels:
- conda-forge
dependencies:
- python=3.12
- adjustText
- astropy-base
- boost-histogram
- ctao-dpps-cosmic-ray-spectra
- eventio
- h5py
- jsonschema
- matplotlib-base
- myst-parser
- numpy
- numpydoc
- particle
- pip
- pre-commit
- pydata-sphinx-theme
- pylint
- pymongo
- pyproj
- pytest
- pytest-cov
- pytest-mock
- pytest-profiling
- pytest-repeat
- pytest-xdist
- python-dotenv
- pyyaml
- ruff
- scipy
- sphinx
- sphinx-design
- uuid6 # temporary dependency; not needed for python >= 3.14
- towncrier
- toml
- pip:
- pytest-random-order
- pytest-requirements
- pytest-retry
# cheatsheet
# create: conda env create -f environment.yml
# activate: conda activate simtools-dev
# update (conda/mamba): conda env update -f environment.yml --prune
# update (micromamba): micromamba env update -f environment.yml -n simtools-dev