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 --- nictools/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nictools') diff --git a/nictools/meta.yaml b/nictools/meta.yaml index 56203d7..cd32cfa 100644 --- a/nictools/meta.yaml +++ b/nictools/meta.yaml @@ -9,7 +9,7 @@ package: requirements: build: - astropy >=1.1 - - numpy x.x + - numpy - scipy - stsci.distutils - stsci.tools @@ -17,7 +17,7 @@ requirements: - python x.x run: - astropy >=1.1 - - numpy x.x + - numpy - scipy - stsci.tools - python x.x -- 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 --- nictools/meta.yaml | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) (limited to 'nictools') diff --git a/nictools/meta.yaml b/nictools/meta.yaml index cd32cfa..9d22e55 100644 --- a/nictools/meta.yaml +++ b/nictools/meta.yaml @@ -1,11 +1,19 @@ +{% set name = 'nictools' %} +{% set version = '1.1.3' %} +{% set number = '0' %} + about: - home: https://github.com/spacetelescope/nictools - summary: nictools + home: https://github.com/spacetelescope/{{name}} + summary: | + Python tools for NICMOS data + build: - number: '0' + number: {{number}} + package: - name: nictools - version: 1.1.3 + name: {{name}} + version: {{version}} + requirements: build: - astropy >=1.1 @@ -21,9 +29,11 @@ requirements: - scipy - stsci.tools - python x.x + source: - git_tag: 1.1.3 - git_url: https://github.com/spacetelescope/nictools + git_tag: {{version}} + git_url: https://github.com/spacetelescope/{{name}}.git + test: imports: - nictools -- 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 --- nictools/meta.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'nictools') diff --git a/nictools/meta.yaml b/nictools/meta.yaml index 9d22e55..3289ec3 100644 --- a/nictools/meta.yaml +++ b/nictools/meta.yaml @@ -3,16 +3,16 @@ {% set number = '0' %} about: - home: https://github.com/spacetelescope/{{name}} + home: https://github.com/spacetelescope/{{ name }} summary: | Python tools for NICMOS data build: - number: {{number}} + number: {{ number }} package: - name: {{name}} - version: {{version}} + name: {{ name }} + version: {{ version }} requirements: build: @@ -31,8 +31,8 @@ requirements: - python x.x 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 --- nictools/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nictools') diff --git a/nictools/meta.yaml b/nictools/meta.yaml index 3289ec3..5949325 100644 --- a/nictools/meta.yaml +++ b/nictools/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'nictools' %} {% set version = '1.1.3' %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/spacetelescope/{{ name }} -- cgit