-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathenvironment_dev.yml
More file actions
79 lines (68 loc) · 1.88 KB
/
environment_dev.yml
File metadata and controls
79 lines (68 loc) · 1.88 KB
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
# This file describes a conda environment that can be used to install STIPS for development and
# testing purposes. Note that this environment setup installs the STIPS module in
# editable mode, so any changes you make to the STIPS source will be reflected the next
# time you run python.
#
# Run the following command to set up this environment:
# $ conda env create -f environment.yml
#
# The environment name can be overridden with the following command:
# $ conda env create -n <custom name> -f environment.yml
#
# Run the following command to activate the environment:
# $ conda activate stips_dev
#
# To deactivate the environment run the following command:
# $ conda deactivate
#
# To remove the environment entirely, run the following command:
# $ conda env remove -n stips
name: stips_dev
channels:
- conda-forge
dependencies:
# Base dependencies
- pip
- python>=3.10
- jupyter
- Cython
- esutil # installed from conda because you need the pre-compiled binaries.
- pip:
# Special Modules. These are temporary entries and require documentation.
# poppy 1.0.3 fixes a bug with how poppy calls factorial with non-integer
# values. through v2.2.0, stpsf only requires poppy 1.0.0, so a
# separate peg for poppy is necessary to guarantee the presence of the fix.
- poppy>=1.0.3
# Core Modules
- stpsf>=2.0.0
- pandeia.engine>=2025.9
- synphot>=1.1.1
- stsynphot>=1.1.0
- soc_roman_tools
# Major modules
- astropy
- photutils
- ConfigParser
- numpy
- scipy
- matplotlib
- ipython
# Minor modules
- montage-wrapper
- pyyaml
- mechanize
# Docs
- docutils
- sphinx
- sphinx_rtd_theme
- stsci_rtd_theme
- sphinx_automodapi
- sphinx_autoapi
- sphinx_astropy
- sphinx_issues
# Testing
- tox
- tox-conda
- pytest-astropy
# Current package
- -e .