diff options
author | James Turner <jturner@gemini.edu> | 2017-02-22 19:33:59 -0500 |
---|---|---|
committer | James Turner <jturner@gemini.edu> | 2017-02-22 19:33:59 -0500 |
commit | 2f0224f0855298cf74c45b1c3b1bbf108a2673e3 (patch) | |
tree | b59c1632e9aca8dc49622d6e93fdad40074f3846 | |
parent | bfb364c96d98f950b03d27556ee347efe0023547 (diff) | |
download | astroconda-iraf-2f0224f0855298cf74c45b1c3b1bbf108a2673e3.tar.gz |
Update disco_stu (test) version, build the docs as part of the conda package and include the LICENSE file.
-rw-r--r-- | gemini.disco_stu/build.sh | 2 | ||||
-rw-r--r-- | gemini.disco_stu/meta.yaml | 17 |
2 files changed, 12 insertions, 7 deletions
diff --git a/gemini.disco_stu/build.sh b/gemini.disco_stu/build.sh index 0b6fbde..46308bd 100644 --- a/gemini.disco_stu/build.sh +++ b/gemini.disco_stu/build.sh @@ -1,2 +1,4 @@ +(cd doc/ && make html && make latexpdf) || exit 1 + python setup.py install diff --git a/gemini.disco_stu/meta.yaml b/gemini.disco_stu/meta.yaml index e9c0c2a..12377c1 100644 --- a/gemini.disco_stu/meta.yaml +++ b/gemini.disco_stu/meta.yaml @@ -1,22 +1,25 @@ about: home: http://www.gemini.edu/sciops/data-and-results/processing-software license: BSD + license_file: LICENSE summary: Gemini Distortion Correction and Stacking Utility (for GSAOI) build: binary_relocation: True - #detect_binary_files_with_prefix: False [osx] - number: '0' + number: '2' package: name: gemini.disco_stu - version: "1.3.1" + version: "1.3.4.dev" source: - fn: disco_stu-1.3.1.tar.gz - url: http://www.gemini.edu/sciops/data/software/disco_stu-1.3.1.tar.gz + fn: disco_stu-1.3.4.tar.gz + # url: http://www.gemini.edu/sciops/data/software/disco_stu-1.3.4.tar.gz + url: http://astroconda-source:4440/disco_stu-1.3.4.tar.gz requirements: build: - - python x.x # syntax needed to force 2.7 builds... + - python x.x # syntax needed to build for each python ver. + - sphinx + - texlive # (from astroconda-gemini-internal) run: - - python >=2.7 # (uses OrderedDict, argparse) + - python x.x # (OrderedDict & argparse require >=2.7) - numpy >=1.9 # (version tested, from the manual) - scipy >=0.14 # (to match the NumPy requirement) - astropy >=1.0 # (from the manual) |