diff options
author | James Turner <jturner@gemini.edu> | 2019-08-28 13:23:30 -0400 |
---|---|---|
committer | James Turner <jturner@gemini.edu> | 2019-08-28 13:23:30 -0400 |
commit | 995686a9c900afc6f75ff36e8c4f8f3e038325f7 (patch) | |
tree | be4a31886a9f4f004051c78dfd04553bc71a9793 | |
parent | 55d13dabb666ed4fb1bf7385d04707ce818bc517 (diff) | |
download | astroconda-iraf-995686a9c900afc6f75ff36e8c4f8f3e038325f7.tar.gz |
Add a couple of deps. that are optional for Python 2.
Update source/package versions for addition of licensing documentation.
-rw-r--r-- | dragons/build.sh | 2 | ||||
-rw-r--r-- | dragons/meta.yaml | 14 |
2 files changed, 10 insertions, 6 deletions
diff --git a/dragons/build.sh b/dragons/build.sh index 85135a3..9ab2886 100644 --- a/dragons/build.sh +++ b/dragons/build.sh @@ -19,5 +19,5 @@ docs="astrodata/doc/ad_CheatSheet astrodata/doc/ad_ProgManual \ # Install the LICENSE file(s) where recipients can read them: mkdir -p ${PREFIX}/share/dragons/ cp -p LICENSE ${PREFIX}/share/dragons/ || exit 1 -#cp -pR extern_licenses ${PREFIX}/share/dragons/ # PUT THIS BACK! +cp -pR extern_licenses ${PREFIX}/share/dragons/ diff --git a/dragons/meta.yaml b/dragons/meta.yaml index 23a8662..c5f625d 100644 --- a/dragons/meta.yaml +++ b/dragons/meta.yaml @@ -3,11 +3,11 @@ build: number: '0' package: name: dragons - version: "2.1.0rc1" + version: "2.1.0rc2" source: git_url: https://github.com/GeminiDRSoftware/DRAGONS.git # git_tag: v2.1.0 # TBC - git_tag: d5d553e37d3b36ff + git_tag: dca379902ede2e00 about: home: http://www.gemini.edu/sciops/data-and-results/processing-software license: BSD @@ -21,11 +21,13 @@ requirements: - setuptools - astropy >=2 - astroquery >=0.3.5 + - configparser >=3.5 # [py2k] - cython >=0.24.1 - future >=0.16.0 + - futures >=3.2 # [py2k] # for FITS store metrics - matplotlib >=1.4.2 - numpy >=1.9.1 - - pyraf >=2.1.6 + - psutil >=5.4 - pytest >=2.9.2 - python-dateutil >=2.5.3 - requests >=2.11.1 @@ -41,12 +43,14 @@ requirements: - python - astropy >=2 - astroquery >=0.3.5 + - configparser >=3.5 # [py2k] - future >=0.16.0 + - futures >=3.2 # [py2k] # for FITS store metrics - gemini_calmgr >=0.9 - matplotlib >=1.4.2 - numpy >=1.9.1 - - pyraf >=2.1.6 - - pytest >=2.9.2 + - psutil >=5.4 + - pytest >=2.9.2 # could be opt. but better allow self-test - python-dateutil >=2.5.3 - requests >=2.11.1 - scipy >=0.15.1 |