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 --- stginga/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stginga') diff --git a/stginga/meta.yaml b/stginga/meta.yaml index d721a51..12dd044 100644 --- a/stginga/meta.yaml +++ b/stginga/meta.yaml @@ -16,14 +16,14 @@ requirements: build: - ginga - astropy >=1.2 - - numpy x.x + - numpy - scipy - setuptools - python x.x run: - ginga - astropy >=1.2 - - numpy x.x + - numpy - scipy - python x.x source: -- 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 --- stginga/meta.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'stginga') diff --git a/stginga/meta.yaml b/stginga/meta.yaml index 12dd044..be7af64 100644 --- a/stginga/meta.yaml +++ b/stginga/meta.yaml @@ -4,14 +4,17 @@ {% set number = '0' %} about: - home: https://github.com/spacetelescope/{{ name }} + home: https://github.com/spacetelescope/{{name}} license: BSD summary: Ginga products specific to STScI data analysis + build: - number: {{ number }} + number: {{number}} + package: - name: {{ name }} - version: {{ version }} + name: {{name}} + version: {{version}} + requirements: build: - ginga @@ -26,9 +29,11 @@ requirements: - numpy - scipy - python x.x + source: - git_tag: {{ tag }} - git_url: https://github.com/spacetelescope/{{ name }}.git + git_tag: {{tag}} + git_url: https://github.com/spacetelescope/{{name}}.git + test: imports: - stginga -- 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 --- stginga/meta.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'stginga') diff --git a/stginga/meta.yaml b/stginga/meta.yaml index be7af64..360aab0 100644 --- a/stginga/meta.yaml +++ b/stginga/meta.yaml @@ -4,16 +4,16 @@ {% set number = '0' %} about: - home: https://github.com/spacetelescope/{{name}} + home: https://github.com/spacetelescope/{{ name }} license: BSD summary: Ginga products specific to STScI data analysis 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: {{tag}} - git_url: https://github.com/spacetelescope/{{name}}.git + git_tag: {{ tag }} + 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 --- stginga/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stginga') diff --git a/stginga/meta.yaml b/stginga/meta.yaml index 360aab0..e47e8f1 100644 --- a/stginga/meta.yaml +++ b/stginga/meta.yaml @@ -1,7 +1,7 @@ {% set name = 'stginga' %} {% set version = '0.1.2' %} {% set tag = version %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/spacetelescope/{{ name }} -- cgit