diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2020-01-17 10:22:05 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <wjp@usecode.org> | 2020-02-07 10:57:37 +0100 |
commit | 82fc179f39ed6da308b0f229769f899570a1d9ea (patch) | |
tree | d3b8b7700df4dbce65eee12649fa6af6dd8667d2 /python/conda/astra-toolbox/meta.yaml | |
parent | b85922700332c8270b144d6fa80d7b08e24bf5ac (diff) | |
download | astra-82fc179f39ed6da308b0f229769f899570a1d9ea.tar.gz astra-82fc179f39ed6da308b0f229769f899570a1d9ea.tar.bz2 astra-82fc179f39ed6da308b0f229769f899570a1d9ea.tar.xz astra-82fc179f39ed6da308b0f229769f899570a1d9ea.zip |
Use numpy backward binary compatibility for conda packages
We now only build a single package built with numpy 1.11.x for numpy>=1.11,<2 .
There is no guarantee that every future numpy version covered by this
will be compatible with numpy 1.11, but numpy checks this internally at
run-time, and should report this (noisily) when this occurs.
Diffstat (limited to 'python/conda/astra-toolbox/meta.yaml')
-rw-r--r-- | python/conda/astra-toolbox/meta.yaml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/python/conda/astra-toolbox/meta.yaml b/python/conda/astra-toolbox/meta.yaml index 78a7394..0526778 100644 --- a/python/conda/astra-toolbox/meta.yaml +++ b/python/conda/astra-toolbox/meta.yaml @@ -8,7 +8,6 @@ source: build: number: 0 - string: py_{{ python }}_numpy_{{ numpy }} test: imports: @@ -36,7 +35,7 @@ requirements: - libastra ==1.9.9.dev0 run: - python - - {{ pin_compatible('numpy', min_pin='x.x', max_pin='x.x') }} + - {{ pin_compatible('numpy', min_pin='x.x', max_pin='x') }} - scipy - six - libastra ==1.9.9.dev0 |