diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-02-16 08:29:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-16 08:29:43 -0500 |
commit | 86028b898c396b9671c745fed96ba287c99dbb4b (patch) | |
tree | bd453bd116c14f4b516a1283e19524e29d2500dc /pytools | |
parent | f592b026aae0a95976c13cddc7822c10b090b73b (diff) | |
download | astroconda-dev-86028b898c396b9671c745fed96ba287c99dbb4b.tar.gz |
Overhaul (#17)
* Remove numpy x.x locks
* Improve formatting and jinja2 usage; License changes minimal
* Bump build numbers on affected packages
Diffstat (limited to 'pytools')
-rw-r--r-- | pytools/meta.yaml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/pytools/meta.yaml b/pytools/meta.yaml index cc854d0..9cbe9ab 100644 --- a/pytools/meta.yaml +++ b/pytools/meta.yaml @@ -1,16 +1,19 @@ {% set name = 'pytools' %} {% set version = '2016.1' %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://pypi.python.org/pytools license: MIT summary: A collection of tools for Python + build: number: {{ number }} + package: name: {{ name }} version: {{ version }} + requirements: build: - decorator >=3.2.0 @@ -19,17 +22,19 @@ requirements: - numpy >=1.6.0 - setuptools - python x.x + run: - decorator >=3.2.0 - appdirs >=1.4.0 - six >=1.8.0 - numpy >=1.6.0 - python x.x + source: fn: {{ name }}-{{ version }}.tar.gz md5: d8af5c5bea24aa4a21881684dcf03b06 - url: - - https://pypi.python.org/packages/source/p/pytools/{{ name }}-{{ version }}.tar.gz + url: https://pypi.python.org/packages/source/p/pytools/{{ name }}-{{ version }}.tar.gz + test: imports: - pytools |