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 --- astroimtools/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'astroimtools') diff --git a/astroimtools/meta.yaml b/astroimtools/meta.yaml index 160be90..032fd48 100644 --- a/astroimtools/meta.yaml +++ b/astroimtools/meta.yaml @@ -14,13 +14,13 @@ requirements: - cython - matplotlib - setuptools - - numpy x.x + - numpy - python x.x run: - astropy >=1.1 - cython - matplotlib - - numpy x.x + - numpy - python x.x source: git_tag: v0.1.1 -- 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 --- astroimtools/meta.yaml | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) (limited to 'astroimtools') diff --git a/astroimtools/meta.yaml b/astroimtools/meta.yaml index 032fd48..6abd056 100644 --- a/astroimtools/meta.yaml +++ b/astroimtools/meta.yaml @@ -1,13 +1,20 @@ +{% set name = 'astroimtools' %} +{% set version = '0.1.1' %} +{% set tag = 'v' + version %} +{% set number = '0' %} + about: - home: https://github.com/spacetelescope/astroimtools + home: https://github.com/spacetelescope/{{name}} license: BSD - readme: README.rst - summary: astroimtools + summary: Astronomical Image Tools + build: - number: '0' + number: {{number}} + package: - name: astroimtools - version: '0.1.1' + name: {{name}} + version: {{version}} + requirements: build: - astropy >=1.1 @@ -22,9 +29,11 @@ requirements: - matplotlib - numpy - python x.x + source: - git_tag: v0.1.1 - git_url: https://github.com/spacetelescope/astroimtools + git_tag: {{tag}} + git_url: https://github.com/spacetelescope/{{name}} + test: commands: - imarith --help -- 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 --- astroimtools/meta.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'astroimtools') diff --git a/astroimtools/meta.yaml b/astroimtools/meta.yaml index 6abd056..8e7604e 100644 --- a/astroimtools/meta.yaml +++ b/astroimtools/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: Astronomical Image Tools 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_tag: {{ tag }} + git_url: https://github.com/spacetelescope/{{ name }} test: commands: -- 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 --- astroimtools/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'astroimtools') diff --git a/astroimtools/meta.yaml b/astroimtools/meta.yaml index 8e7604e..520d4d7 100644 --- a/astroimtools/meta.yaml +++ b/astroimtools/meta.yaml @@ -1,7 +1,7 @@ {% set name = 'astroimtools' %} {% set version = '0.1.1' %} {% set tag = 'v' + version %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/spacetelescope/{{ name }} -- cgit