forked from spacetelescope/STScI-STIPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment_dev.yml
85 lines (75 loc) · 2.18 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
85
# 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
- astropy
- defaults
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 the way poppy was calling factorial with non-integer
# values. Currently this is the only way to ensure that webbpsf picks up the correct
# poppy version. This peg should be removed as soon as webbpsf has updated to only
# use poppy versions that include this fix.
- poppy==1.0.3
# Core Modules
- webbpsf>=1.1.1
- pandeia.engine==3.1
- 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
# (install stsci_rtd_theme from master until a post 1.0 release occurs
# to prevent issues with bullets in the documentation)
- git+https://github.com/spacetelescope/stsci_rtd_theme.git@master
- sphinx_automodapi
- sphinx_autoapi
- sphinx_astropy
# Testing
- tox
- tox-conda
- pytest-astropy
# Current package
- -e .