From 2a8c8e0334091dda96407883eee4de26219d0a77 Mon Sep 17 00:00:00 2001 From: Jose Gomez-Dans Date: Thu, 20 Sep 2018 17:00:53 +0100 Subject: [PATCH] Trying to get conda and numba to work --- recipe/meta.yaml | 4 ++-- setup.py | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 7b9747d..ad58f16 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,9 +1,9 @@ package: name: prosail - version: 2.0.1 + version: 2.0.1-1 source: - git_tag: 2.0.1 + git_tag: 2.0.1-1 git_url: http://github.com/jgomezdans/prosail.git requirements: diff --git a/setup.py b/setup.py index dce9479..737a0a9 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,7 @@ def read(filename): "scipy", "pytest", ], - version="2.0.1", - packages=["prosail"] + version="2.0.1-1", + packages=["prosail"], + zip_safe=False # Apparently needed for conda )