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 --- stsci.distutils/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stsci.distutils') diff --git a/stsci.distutils/meta.yaml b/stsci.distutils/meta.yaml index 0156194..5675356 100644 --- a/stsci.distutils/meta.yaml +++ b/stsci.distutils/meta.yaml @@ -11,11 +11,11 @@ requirements: build: - d2to1 - setuptools - - numpy x.x + - numpy - python x.x run: - nose - - numpy x.x + - numpy - python x.x source: git_url: https://github.com/spacetelescope/stsci.distutils -- 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 --- stsci.distutils/meta.yaml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) (limited to 'stsci.distutils') diff --git a/stsci.distutils/meta.yaml b/stsci.distutils/meta.yaml index 5675356..8054e89 100644 --- a/stsci.distutils/meta.yaml +++ b/stsci.distutils/meta.yaml @@ -1,12 +1,20 @@ +{% set name = 'stsci.distutils' %} +{% set version = '0.3.8' %} +{% set number = '0' %} + about: - home: https://github.com/embray/stsci.distutils + home: https://github.com/spacetelescope/stsci.distutils license: GPL - summary: stsci.distutils + summary: | + distutils/packaging-related utilities used by some of STScI's packages + build: - number: '0' + number: {{number}} + package: - name: stsci.distutils - version: 0.3.8 + name: {{name}} + version: {{version}} + requirements: build: - d2to1 @@ -17,8 +25,10 @@ requirements: - nose - numpy - python x.x + source: - git_url: https://github.com/spacetelescope/stsci.distutils + git_url: https://github.com/spacetelescope/{{name}}.git + test: imports: - stsci.distutils -- 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 --- stsci.distutils/meta.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'stsci.distutils') diff --git a/stsci.distutils/meta.yaml b/stsci.distutils/meta.yaml index 8054e89..aef60c2 100644 --- a/stsci.distutils/meta.yaml +++ b/stsci.distutils/meta.yaml @@ -9,11 +9,11 @@ about: distutils/packaging-related utilities used by some of STScI's packages build: - number: {{number}} + number: {{ number }} package: - name: {{name}} - version: {{version}} + name: {{ name }} + version: {{ version }} requirements: build: @@ -27,7 +27,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 665a764b67153f7ed94ac472004ef5bf8ca06683 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 6 Dec 2016 15:29:54 -0500 Subject: Fix licenses --- stsci.distutils/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stsci.distutils') diff --git a/stsci.distutils/meta.yaml b/stsci.distutils/meta.yaml index aef60c2..aab62cc 100644 --- a/stsci.distutils/meta.yaml +++ b/stsci.distutils/meta.yaml @@ -4,7 +4,7 @@ about: home: https://github.com/spacetelescope/stsci.distutils - license: GPL + license: BSD summary: | distutils/packaging-related utilities used by some of STScI's packages -- 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 --- stsci.distutils/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stsci.distutils') diff --git a/stsci.distutils/meta.yaml b/stsci.distutils/meta.yaml index aab62cc..cbf277d 100644 --- a/stsci.distutils/meta.yaml +++ b/stsci.distutils/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'stsci.distutils' %} {% set version = '0.3.8' %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/spacetelescope/stsci.distutils -- cgit From ae39975e0ebd1c31d15c47f396a0ae4521715ab3 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 5 Jan 2017 12:24:35 -0500 Subject: Use jinja in home URL --- stsci.distutils/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stsci.distutils') diff --git a/stsci.distutils/meta.yaml b/stsci.distutils/meta.yaml index cbf277d..305630a 100644 --- a/stsci.distutils/meta.yaml +++ b/stsci.distutils/meta.yaml @@ -3,10 +3,10 @@ {% set number = '1' %} about: - home: https://github.com/spacetelescope/stsci.distutils + home: https://github.com/spacetelescope/{{ name }} license: BSD summary: | - distutils/packaging-related utilities used by some of STScI's packages + distutils/packaging-related utilities used by older STScI packages build: number: {{ number }} -- cgit