From e5bf0cbe7eb556d4aa217bf25dc12229d5a4719e Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 11 Aug 2015 13:48:48 -0400 Subject: Fix empty GIT_DESCRIBE_TAG default (0.0.0) --- reftools/reftools.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'reftools') diff --git a/reftools/reftools.ini b/reftools/reftools.ini index 6245c19..aa7c5ee 100644 --- a/reftools/reftools.ini +++ b/reftools/reftools.ini @@ -1,6 +1,6 @@ [package] name: reftools -version: {{ environ.get("GIT_DESCRIBE_TAG", "") }}.git +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git [about] home: http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python -- cgit From 9495cc05daa0fd8ad5fbb53cfce5f526dcae4c70 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Tue, 25 Aug 2015 10:23:43 -0400 Subject: Add dependencies --- reftools/reftools.ini | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'reftools') diff --git a/reftools/reftools.ini b/reftools/reftools.ini index aa7c5ee..d7b1ad1 100644 --- a/reftools/reftools.ini +++ b/reftools/reftools.ini @@ -17,16 +17,26 @@ number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} build: d2to1 stsci.distutils + stsci.ndimage + stsci.imagestats stsci.tools pywcs + pysynphot + stwcs + calcos numpy setuptools python run: d2to1 stsci.distutils + stsci.ndimage + stsci.imagestats stsci.tools pywcs + pysynphot + stwcs + calcos numpy python -- cgit From 4b00c5abebcd321fd95755c4816d2fd6790a172b Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Fri, 25 Sep 2015 15:26:53 -0400 Subject: Corrected for building under python 3.4 --- reftools/reftools.ini | 1 + 1 file changed, 1 insertion(+) (limited to 'reftools') diff --git a/reftools/reftools.ini b/reftools/reftools.ini index d7b1ad1..0b3ef60 100644 --- a/reftools/reftools.ini +++ b/reftools/reftools.ini @@ -12,6 +12,7 @@ git_url: ssh://git@bitbucket.org/stsci_ssb/${package:name}.git [build] number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} +preserve_egg_dir: yes [requirements] build: -- cgit