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 --- photutils/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'photutils') diff --git a/photutils/meta.yaml b/photutils/meta.yaml index 7f8f921..b35f4a2 100644 --- a/photutils/meta.yaml +++ b/photutils/meta.yaml @@ -12,7 +12,7 @@ requirements: - astropy >=1.1 - cython - matplotlib - - numpy x.x + - numpy - scikit-image - scipy - setuptools @@ -21,7 +21,7 @@ requirements: - astropy >=1.1 - cython - matplotlib - - numpy x.x + - numpy - scikit-image - scipy - setuptools -- 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 --- photutils/meta.yaml | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) (limited to 'photutils') diff --git a/photutils/meta.yaml b/photutils/meta.yaml index b35f4a2..32396bb 100644 --- a/photutils/meta.yaml +++ b/photutils/meta.yaml @@ -1,12 +1,20 @@ +{% set name = 'photutils' %} +{% set version = '0.3' %} +{% set tag = 'v' + version %} +{% set number = '1' %} + about: - home: https://github.com/astropy/photutils + home: https://github.com/astropy/{{name}} license: BSD - summary: photutils + summary: An Astropy package for photometry + build: - number: '1' + number: {{number}} + package: - name: photutils - version: 0.3 + name: {{name}} + version: {{version}} + requirements: build: - astropy >=1.1 @@ -26,9 +34,11 @@ requirements: - scipy - setuptools - python x.x + source: - git_tag: v0.3 - git_url: https://github.com/astropy/photutils + git_tag: {{tag}} + git_url: https://github.com/astropy/{{name}}.git + test: imports: - photutils -- 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 --- photutils/meta.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'photutils') diff --git a/photutils/meta.yaml b/photutils/meta.yaml index 32396bb..bc2f592 100644 --- a/photutils/meta.yaml +++ b/photutils/meta.yaml @@ -4,16 +4,16 @@ {% set number = '1' %} about: - home: https://github.com/astropy/{{name}} + home: https://github.com/astropy/{{ name }} license: BSD summary: An Astropy package for photometry build: - number: {{number}} + number: {{ number }} package: - name: {{name}} - version: {{version}} + name: {{ name }} + version: {{ version }} requirements: build: @@ -36,8 +36,8 @@ requirements: - python x.x source: - git_tag: {{tag}} - git_url: https://github.com/astropy/{{name}}.git + git_tag: {{ tag }} + git_url: https://github.com/astropy/{{ 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 --- photutils/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'photutils') diff --git a/photutils/meta.yaml b/photutils/meta.yaml index bc2f592..9cf423a 100644 --- a/photutils/meta.yaml +++ b/photutils/meta.yaml @@ -1,7 +1,7 @@ {% set name = 'photutils' %} {% set version = '0.3' %} {% set tag = 'v' + version %} -{% set number = '1' %} +{% set number = '2' %} about: home: https://github.com/astropy/{{ name }} -- cgit