From 5eab9568dd14039d8d6a1e58a47f071a34ccbed9 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 31 Aug 2016 12:48:58 +0200 Subject: [PATCH 01/30] Initial commit for tinyarray --- recipes/tinyarray/meta.yaml | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100755 recipes/tinyarray/meta.yaml diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml new file mode 100755 index 0000000000000..a615fe44ed8fb --- /dev/null +++ b/recipes/tinyarray/meta.yaml @@ -0,0 +1,47 @@ +{% set name = "tinyarray" %} +{% set version = "1.1.0" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + git_url: https://gitlab.kwant-project.org/kwant/tinyarray.git + git_tag: v{{ version }} + +build: + number: 0 + script: python setup.py install --single-version-externally-managed --record record.txt + +requirements: + build: + - python + - setuptools + - nose + - gcc + run: + - python + - nose + +test: + imports: + - tinyarray + +about: + home: http://git.kwant-project.org/tinyarray/about/ + license: BSD License + license_file: LICENSE.rst + summary: 'Arrays of numbers for Python, optimized for small sizes' + description: | + Tinyarrays are similar to NumPy arrays, but optimized for small sizes. + Common operations on very small arrays are to 3-7 times faster than + with NumPy (with NumPy 1.6 it used to be up to 35 times), and 3 times + less memory is used to store them. Tinyarrays are useful if you need + many small arrays of numbers, and cannot combine them into a few + large ones. (The resulting code is still much slower than C, but it + may now be fast enough.) + doc_url: http://git.kwant-project.org/tinyarray/about/ + +extra: + recipe-maintainers: + - basnijholt \ No newline at end of file From 91790a696d8b40041db08ba340abfc343d603222 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 31 Aug 2016 12:55:34 +0200 Subject: [PATCH 02/30] gcc -> toolchain --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index a615fe44ed8fb..b8be2bcdffaf6 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -18,7 +18,7 @@ requirements: - python - setuptools - nose - - gcc + - toolchain run: - python - nose From 10dab3119bdc084ccc8540c80cde3d170e40e60a Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 31 Aug 2016 13:16:27 +0200 Subject: [PATCH 03/30] Skip Windows --- recipes/tinyarray/meta.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index b8be2bcdffaf6..d363829ba449c 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -10,6 +10,7 @@ source: git_tag: v{{ version }} build: + skip: true # [win] number: 0 script: python setup.py install --single-version-externally-managed --record record.txt From 9554b9c1dcb993709675b8e4c15797220a2b5fda Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 31 Aug 2016 13:20:30 +0200 Subject: [PATCH 04/30] Add newline --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index d363829ba449c..ba961d696bd9c 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -45,4 +45,4 @@ about: extra: recipe-maintainers: - - basnijholt \ No newline at end of file + - basnijholt From c8182249476333910dc486590668fc6bf2ce70fa Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 31 Aug 2016 14:41:07 +0200 Subject: [PATCH 05/30] Change BSD to BSD 2-Clause --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index ba961d696bd9c..d065321652806 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -30,7 +30,7 @@ test: about: home: http://git.kwant-project.org/tinyarray/about/ - license: BSD License + license: BSD 2-Clause license_file: LICENSE.rst summary: 'Arrays of numbers for Python, optimized for small sizes' description: | From a4e551cee511481e0e20312dba33ad3072d0b593 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 31 Aug 2016 14:47:38 +0200 Subject: [PATCH 06/30] Update source from git to archive.tar.gz --- recipes/tinyarray/meta.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index d065321652806..44c229c5a4e5c 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -6,8 +6,9 @@ package: version: {{ version }} source: - git_url: https://gitlab.kwant-project.org/kwant/tinyarray.git - git_tag: v{{ version }} + fn: v{{ version }}.tar.gz + url: https://gitlab.kwant-project.org/kwant/kwant/repository/archive.tar.gz?ref=v{{ version }} + sha256: 0a57eff1923ce369a49211d9a673c5063688b341 build: skip: true # [win] From 3a52ab9f90616c4650f6c719d77729c8ae921d66 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 31 Aug 2016 14:50:58 +0200 Subject: [PATCH 07/30] Correct sha256 --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 44c229c5a4e5c..a186306ac20e6 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -8,7 +8,7 @@ package: source: fn: v{{ version }}.tar.gz url: https://gitlab.kwant-project.org/kwant/kwant/repository/archive.tar.gz?ref=v{{ version }} - sha256: 0a57eff1923ce369a49211d9a673c5063688b341 + sha256: 129b6e895b8392724f2bff52f549787165394e8dffbf49fde0ca35af6100d647 build: skip: true # [win] From 4989d3ac75a12d658e9628c42d0812764045e84e Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 31 Aug 2016 15:25:52 +0200 Subject: [PATCH 08/30] kwant -> tinyarray --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index a186306ac20e6..b07564316e294 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -7,7 +7,7 @@ package: source: fn: v{{ version }}.tar.gz - url: https://gitlab.kwant-project.org/kwant/kwant/repository/archive.tar.gz?ref=v{{ version }} + url: https://gitlab.kwant-project.org/kwant/tinyarray/repository/archive.tar.gz?ref=v{{ version }} sha256: 129b6e895b8392724f2bff52f549787165394e8dffbf49fde0ca35af6100d647 build: From f6ac41aaf7c93c715e90c7bbd927f99dc2fe1b9e Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 31 Aug 2016 15:30:40 +0200 Subject: [PATCH 09/30] Correct sha256 to .tar.gz file --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index b07564316e294..5fdd1d80769ed 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -8,7 +8,7 @@ package: source: fn: v{{ version }}.tar.gz url: https://gitlab.kwant-project.org/kwant/tinyarray/repository/archive.tar.gz?ref=v{{ version }} - sha256: 129b6e895b8392724f2bff52f549787165394e8dffbf49fde0ca35af6100d647 + sha256: 4cfe0f50b4d8a8fd92cb72efcff63bd0243a21b4df11b6d1022a05f90d23cf72 build: skip: true # [win] From 38c6ba6e2f2a4a7ea3ba9659492e69daf965c07f Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 09:12:13 +0200 Subject: [PATCH 10/30] Remove nose as runtime dependency --- recipes/tinyarray/meta.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 5fdd1d80769ed..17de66bba41d9 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -23,7 +23,6 @@ requirements: - toolchain run: - python - - nose test: imports: From 2a5121947c691a38d7e1b3c05391d241772e202e Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 16:38:42 +0200 Subject: [PATCH 11/30] Trying out versioneer --- recipes/tinyarray/meta.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 17de66bba41d9..6dade3ba591e7 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -1,5 +1,5 @@ {% set name = "tinyarray" %} -{% set version = "1.1.0" %} +{% set version = "1.1.1" %} package: name: {{ name|lower }} @@ -7,11 +7,11 @@ package: source: fn: v{{ version }}.tar.gz - url: https://gitlab.kwant-project.org/kwant/tinyarray/repository/archive.tar.gz?ref=v{{ version }} - sha256: 4cfe0f50b4d8a8fd92cb72efcff63bd0243a21b4df11b6d1022a05f90d23cf72 - + url: https://gitlab.kwant-project.org/basnijholt/tinyarray/repository/archive.tar.gz?ref=v{{ version }} + sha256: 3612a166f492a012fc834abaebe806280df2d86a8bd81afabdd9eb1bd55f5a6b + build: - skip: true # [win] + # skip: true # [win] number: 0 script: python setup.py install --single-version-externally-managed --record record.txt From 02911c5d43dea1016f5caf8b6d6f1fb250178c05 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 16:45:12 +0200 Subject: [PATCH 12/30] Update sha256 --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 6dade3ba591e7..78ab70b7268eb 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -8,7 +8,7 @@ package: source: fn: v{{ version }}.tar.gz url: https://gitlab.kwant-project.org/basnijholt/tinyarray/repository/archive.tar.gz?ref=v{{ version }} - sha256: 3612a166f492a012fc834abaebe806280df2d86a8bd81afabdd9eb1bd55f5a6b + sha256: 1e6848ee6b559fd63b91024cc0dcefec3f26ac8343ad7aeefaa7e5ea1b8d8f2b build: # skip: true # [win] From b6223b1b58aa287c9d0b317224e7a04cd23a6bea Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 16:57:50 +0200 Subject: [PATCH 13/30] Change sha256 to latest commit --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 78ab70b7268eb..b38bc1958acef 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -8,7 +8,7 @@ package: source: fn: v{{ version }}.tar.gz url: https://gitlab.kwant-project.org/basnijholt/tinyarray/repository/archive.tar.gz?ref=v{{ version }} - sha256: 1e6848ee6b559fd63b91024cc0dcefec3f26ac8343ad7aeefaa7e5ea1b8d8f2b + sha256: b032cefe4745cb0be5a6f881d413f544a7b5a08a6a233f112fc76723e4d42705 build: # skip: true # [win] From ddc04594318cf616e9e268a8f8498014fc105020 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 17:05:22 +0200 Subject: [PATCH 14/30] Add test_tinyarray.py --- recipes/tinyarray/meta.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index b38bc1958acef..307f791005e46 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -25,8 +25,12 @@ requirements: - python test: + source_files: + - test_tinyarray.py imports: - tinyarray + commands: + - python test_tinyarray.py about: home: http://git.kwant-project.org/tinyarray/about/ From 7ed924b9cc0053eb092accc04f9cfca67747a0cc Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 17:11:35 +0200 Subject: [PATCH 15/30] Current version of conda-build doesn't recognize source_files --- recipes/tinyarray/meta.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 307f791005e46..c1bbe02e3e93c 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -25,8 +25,6 @@ requirements: - python test: - source_files: - - test_tinyarray.py imports: - tinyarray commands: From 93e1787e0e06bd482fc1c5e552c5f280da1e2875 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 17:17:26 +0200 Subject: [PATCH 16/30] New sha256 with header --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index c1bbe02e3e93c..b4790517e3b6a 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -8,7 +8,7 @@ package: source: fn: v{{ version }}.tar.gz url: https://gitlab.kwant-project.org/basnijholt/tinyarray/repository/archive.tar.gz?ref=v{{ version }} - sha256: b032cefe4745cb0be5a6f881d413f544a7b5a08a6a233f112fc76723e4d42705 + sha256: 83ae0dad1d352128083db1e89242197673b0578b5b827b882fbd23094e254fbb build: # skip: true # [win] From e317bbd8f3ec58ab2731d62303116323f762affc Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 17:19:40 +0200 Subject: [PATCH 17/30] Remove test --- recipes/tinyarray/meta.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index b4790517e3b6a..6370dc39dec59 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -27,8 +27,6 @@ requirements: test: imports: - tinyarray - commands: - - python test_tinyarray.py about: home: http://git.kwant-project.org/tinyarray/about/ From 8dcd7d4a96c2d054485c4c7930ab393e91fe557b Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 17:34:35 +0200 Subject: [PATCH 18/30] Add tests --- recipes/tinyarray/meta.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 6370dc39dec59..a2fef939476a5 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -19,12 +19,18 @@ requirements: build: - python - setuptools - - nose - toolchain run: - python test: + requires: + - nose + source_files: + - test_tinyarray.py + commands: + - $PYTHON test_tinyarray.py # [unix] + - %PYTHON% test_tinyarray.py # [win] imports: - tinyarray From ba8a0ee2584950bfffbc374c698236b9369ed755 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 17:40:00 +0200 Subject: [PATCH 19/30] python test_tinyarray.py --- recipes/tinyarray/meta.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index a2fef939476a5..6fec8f44f6bae 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -29,8 +29,7 @@ test: source_files: - test_tinyarray.py commands: - - $PYTHON test_tinyarray.py # [unix] - - %PYTHON% test_tinyarray.py # [win] + - python test_tinyarray.py imports: - tinyarray From c03cfee21263040218ef667e94484ef857604c07 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 17:55:25 +0200 Subject: [PATCH 20/30] Comment out test_tinyarray.py --- recipes/tinyarray/meta.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 6fec8f44f6bae..7f90d73d9bab7 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -24,12 +24,12 @@ requirements: - python test: - requires: - - nose - source_files: - - test_tinyarray.py - commands: - - python test_tinyarray.py + # requires: + # - nose + # source_files: + # - test_tinyarray.py + # commands: + # - python test_tinyarray.py imports: - tinyarray From c9fe529bec73fb046ddae0f9134646424eca4611 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 3 Sep 2016 18:31:07 +0200 Subject: [PATCH 21/30] Add nose to build requirements again --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 7f90d73d9bab7..29b4ca588c17c 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -11,7 +11,6 @@ source: sha256: 83ae0dad1d352128083db1e89242197673b0578b5b827b882fbd23094e254fbb build: - # skip: true # [win] number: 0 script: python setup.py install --single-version-externally-managed --record record.txt @@ -20,6 +19,7 @@ requirements: - python - setuptools - toolchain + - nose run: - python From 8854e1b01c0f57e81b90d4bb17e2e5a0c0e872d9 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Mon, 5 Sep 2016 16:03:31 +0200 Subject: [PATCH 22/30] conda_test tag --- recipes/tinyarray/meta.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 29b4ca588c17c..249637f18d37b 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -1,14 +1,16 @@ {% set name = "tinyarray" %} -{% set version = "1.1.1" %} +# {% set version = "1.1.1" %} package: name: {{ name|lower }} version: {{ version }} source: - fn: v{{ version }}.tar.gz - url: https://gitlab.kwant-project.org/basnijholt/tinyarray/repository/archive.tar.gz?ref=v{{ version }} - sha256: 83ae0dad1d352128083db1e89242197673b0578b5b827b882fbd23094e254fbb + # fn: v{{ version }}.tar.gz + fn: conda_test.tar.gz + # url: https://gitlab.kwant-project.org/kwant/tinyarray/repository/archive.tar.gz?ref=v{{ version }} + url: https://gitlab.kwant-project.org/kwant/tinyarray/repository/archive.tar.gz?ref=conda_test + sha256: cc5bb7ce8984a221cae10abc920ab48f91aa34daf8c4b3d566087fc30d14c777 build: number: 0 From 36398aee112dbafdd77540225ae22783cbb77faa Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Mon, 5 Sep 2016 16:12:40 +0200 Subject: [PATCH 23/30] Define version --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 249637f18d37b..afc6910d54ec5 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -1,5 +1,5 @@ {% set name = "tinyarray" %} -# {% set version = "1.1.1" %} +{% set version = "1.1.1" %} package: name: {{ name|lower }} From a2d19c1f5f10c58932c6c363665f15d8e941bfb1 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Mon, 5 Sep 2016 18:52:38 +0200 Subject: [PATCH 24/30] Update to official v1.2.0a1 --- recipes/tinyarray/meta.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index afc6910d54ec5..3894da81febb7 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -1,15 +1,13 @@ {% set name = "tinyarray" %} -{% set version = "1.1.1" %} +{% set version = "1.2.0a1" %} package: name: {{ name|lower }} version: {{ version }} source: - # fn: v{{ version }}.tar.gz - fn: conda_test.tar.gz - # url: https://gitlab.kwant-project.org/kwant/tinyarray/repository/archive.tar.gz?ref=v{{ version }} - url: https://gitlab.kwant-project.org/kwant/tinyarray/repository/archive.tar.gz?ref=conda_test + fn: v{{ version }}.tar.gz + url: https://gitlab.kwant-project.org/kwant/tinyarray/repository/archive.tar.gz?ref=v{{ version }} sha256: cc5bb7ce8984a221cae10abc920ab48f91aa34daf8c4b3d566087fc30d14c777 build: From c4e2cb2645a8c4691c1a462b1065a4c21a489ea4 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Tue, 6 Sep 2016 09:01:17 +0200 Subject: [PATCH 25/30] Change sh256 to v1.2.0a1 --- recipes/tinyarray/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 3894da81febb7..bd55f4d3f8ea4 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -8,7 +8,7 @@ package: source: fn: v{{ version }}.tar.gz url: https://gitlab.kwant-project.org/kwant/tinyarray/repository/archive.tar.gz?ref=v{{ version }} - sha256: cc5bb7ce8984a221cae10abc920ab48f91aa34daf8c4b3d566087fc30d14c777 + sha256: e155a1c373c90d81877f953810f108cff72cf22a50c44b9cf86a803035198d04 build: number: 0 From 87d620f5c76081178b2d4a4a3f770b02a61c55a3 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 14 Sep 2016 18:39:44 +0200 Subject: [PATCH 26/30] Uncommenting tests that require conda-build 2.0.0 --- recipes/tinyarray/meta.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index bd55f4d3f8ea4..d36a2a2741928 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -24,12 +24,12 @@ requirements: - python test: - # requires: - # - nose - # source_files: - # - test_tinyarray.py - # commands: - # - python test_tinyarray.py + requires: + - nose + source_files: + - test_tinyarray.py + commands: + - python test_tinyarray.py imports: - tinyarray From ae461102d1634874ef3ec5c1e0a83753234b88f9 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Tue, 20 Sep 2016 16:31:51 +0200 Subject: [PATCH 27/30] Add numpy as test requirement --- recipes/tinyarray/meta.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index d36a2a2741928..0d042407cd10a 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -26,6 +26,7 @@ requirements: test: requires: - nose + - numpy source_files: - test_tinyarray.py commands: From 790257c69d1c688cf3855ac26a67ad54028a5afe Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sun, 9 Oct 2016 13:56:06 +0200 Subject: [PATCH 28/30] update description --- recipes/tinyarray/meta.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 0d042407cd10a..187b9548c2b28 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -45,8 +45,7 @@ about: with NumPy (with NumPy 1.6 it used to be up to 35 times), and 3 times less memory is used to store them. Tinyarrays are useful if you need many small arrays of numbers, and cannot combine them into a few - large ones. (The resulting code is still much slower than C, but it - may now be fast enough.) + large ones. doc_url: http://git.kwant-project.org/tinyarray/about/ extra: From a6582a2f7bc8ac4997ad1461d2f084ad8b6f8ae1 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 26 Oct 2016 09:09:55 +0200 Subject: [PATCH 29/30] Comment out conda build 2 part --- recipes/tinyarray/meta.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 187b9548c2b28..7cc6b6e8bb22d 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -27,10 +27,10 @@ test: requires: - nose - numpy - source_files: - - test_tinyarray.py - commands: - - python test_tinyarray.py +# source_files: +# - test_tinyarray.py +# commands: +# - python test_tinyarray.py imports: - tinyarray From 7d8e2e5d113836cf3eba0b0aa75de7d3a6e80f23 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 26 Oct 2016 15:11:32 +0200 Subject: [PATCH 30/30] change doc_url and comment out nose for building for conda build 1 --- recipes/tinyarray/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/tinyarray/meta.yaml b/recipes/tinyarray/meta.yaml index 7cc6b6e8bb22d..7df931e513126 100755 --- a/recipes/tinyarray/meta.yaml +++ b/recipes/tinyarray/meta.yaml @@ -25,8 +25,8 @@ requirements: test: requires: - - nose - numpy +# - nose # source_files: # - test_tinyarray.py # commands: @@ -46,7 +46,7 @@ about: less memory is used to store them. Tinyarrays are useful if you need many small arrays of numbers, and cannot combine them into a few large ones. - doc_url: http://git.kwant-project.org/tinyarray/about/ + doc_url: https://gitlab.kwant-project.org/kwant/tinyarray extra: recipe-maintainers: