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 --- stistools/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stistools') diff --git a/stistools/meta.yaml b/stistools/meta.yaml index 424e8d6..c5ac53a 100644 --- a/stistools/meta.yaml +++ b/stistools/meta.yaml @@ -15,13 +15,13 @@ requirements: - stsci.distutils - stsci.tools - setuptools - - numpy x.x + - numpy - python x.x run: - astropy >=1.1 - scipy - stsci.tools - - numpy x.x + - numpy - python x.x source: git_url: https://github.com/spacetelescope/stistools -- 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 --- stistools/meta.yaml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) (limited to 'stistools') diff --git a/stistools/meta.yaml b/stistools/meta.yaml index c5ac53a..c75015b 100644 --- a/stistools/meta.yaml +++ b/stistools/meta.yaml @@ -1,12 +1,19 @@ +{% set name = 'stistools' %} +{% set version = '1.1' %} +{% set number = '0' %} + about: - home: http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python + home: https://github.com/spacetelescope/{{name}} license: BSD - summary: stistools + summary: Tools for STIS (Space Telescope Imaging Spectrograph) + build: - number: '0' + number: {{number}} + package: - name: stistools - version: '1.1' + name: {{name}} + version: {{version}} + requirements: build: - d2to1 @@ -23,8 +30,10 @@ requirements: - stsci.tools - numpy - python x.x + source: - git_url: https://github.com/spacetelescope/stistools + git_url: https://github.com/spacetelescope/{{name}}.git + test: imports: - stistools -- 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 --- stistools/meta.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'stistools') diff --git a/stistools/meta.yaml b/stistools/meta.yaml index c75015b..0167dc1 100644 --- a/stistools/meta.yaml +++ b/stistools/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: Tools for STIS (Space Telescope Imaging Spectrograph) build: - number: {{number}} + number: {{ number }} package: - name: {{name}} - version: {{version}} + name: {{ name }} + version: {{ version }} requirements: build: @@ -32,7 +32,7 @@ requirements: - python x.x source: - git_url: https://github.com/spacetelescope/{{name}}.git + 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 --- stistools/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stistools') diff --git a/stistools/meta.yaml b/stistools/meta.yaml index 0167dc1..6b84788 100644 --- a/stistools/meta.yaml +++ b/stistools/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'stistools' %} {% set version = '1.1' %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/spacetelescope/{{ name }} -- cgit