From d53f69876e2c1cccdd2a5b12da9096dd3bd8aa1c Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 29 Nov 2016 14:42:29 -0500 Subject: Remove numpy locks --- wfc3tools/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wfc3tools') diff --git a/wfc3tools/meta.yaml b/wfc3tools/meta.yaml index 040395e..218212c 100644 --- a/wfc3tools/meta.yaml +++ b/wfc3tools/meta.yaml @@ -14,7 +14,7 @@ package: requirements: build: - astropy >=1.1 - - numpy x.x + - numpy - setuptools - python x.x - matplotlib @@ -22,7 +22,7 @@ requirements: - stsci.tools run: - astropy >=1.1 - - numpy x.x + - numpy - python x.x - stsci.tools - matplotlib -- cgit From 4fe08aedce73669d3225c8bbe8dbecc108d91133 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 29 Nov 2016 20:40:40 -0500 Subject: Improve recipe uniformity --- wfc3tools/meta.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'wfc3tools') diff --git a/wfc3tools/meta.yaml b/wfc3tools/meta.yaml index 218212c..efec653 100644 --- a/wfc3tools/meta.yaml +++ b/wfc3tools/meta.yaml @@ -3,14 +3,17 @@ {% set number = '0' %} about: - home: https://github.com/spacetelescope/{{ name }} + home: https://github.com/spacetelescope/{{name}} license: BSD summary: For analyzing and calibrating HST-WFC3 data + build: - number: {{ number }} + number: {{number}} + package: - name: {{ name }} - version: {{ version }} + name: {{name}} + version: {{version}} + requirements: build: - astropy >=1.1 @@ -27,9 +30,11 @@ requirements: - stsci.tools - matplotlib - scipy + source: - git_tag: {{ version }} - git_url: https://github.com/spacetelescope/{{ name }}.git + git_tag: {{version}} + git_url: https://github.com/spacetelescope/{{name}}.git + test: imports: - wfc3tools -- cgit From f5f2cdfa9b94ae96f2c312758cdb87dcf74b2c4d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 6 Dec 2016 13:54:28 -0500 Subject: Revert spaces around jinja2 variables --- wfc3tools/meta.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'wfc3tools') diff --git a/wfc3tools/meta.yaml b/wfc3tools/meta.yaml index efec653..4b632b9 100644 --- a/wfc3tools/meta.yaml +++ b/wfc3tools/meta.yaml @@ -3,16 +3,16 @@ {% set number = '0' %} about: - home: https://github.com/spacetelescope/{{name}} + home: https://github.com/spacetelescope/{{ name }} license: BSD summary: For analyzing and calibrating HST-WFC3 data build: - number: {{number}} + number: {{ number }} package: - name: {{name}} - version: {{version}} + name: {{ name }} + version: {{ version }} requirements: build: @@ -32,8 +32,8 @@ requirements: - scipy source: - git_tag: {{version}} - git_url: https://github.com/spacetelescope/{{name}}.git + git_tag: {{ version }} + git_url: https://github.com/spacetelescope/{{ name }}.git test: imports: -- cgit From ae68d66ae8cab18227fa65ba783f4d58ff7f9276 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 13 Dec 2016 15:31:37 -0500 Subject: Bump build numbers and meta-package versions --- wfc3tools/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wfc3tools') diff --git a/wfc3tools/meta.yaml b/wfc3tools/meta.yaml index 4b632b9..c5adfd6 100644 --- a/wfc3tools/meta.yaml +++ b/wfc3tools/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'wfc3tools' %} {% set version = '1.3.4' %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/spacetelescope/{{ name }} -- cgit