summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-09 07:49:45 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-09 07:49:45 +0200
commitd46bfa4c50cc3bb52eaee5dffc6b798b0ae236f6 (patch)
treed0631d6d0b28319c62917caff84d6533e1908572
parent31e7f07ce852644f287f81e727eff7eef3756d12 (diff)
move cython from install_requires to setup_requires
-rw-r--r--CMakeGUDHIVersion.txt2
-rw-r--r--src/python/setup.py.in4
2 files changed, 3 insertions, 3 deletions
diff --git a/CMakeGUDHIVersion.txt b/CMakeGUDHIVersion.txt
index 857b0056..d2d98dea 100644
--- a/CMakeGUDHIVersion.txt
+++ b/CMakeGUDHIVersion.txt
@@ -1,6 +1,6 @@
set (GUDHI_MAJOR_VERSION 3)
set (GUDHI_MINOR_VERSION 2)
-set (GUDHI_PATCH_VERSION 0a12)
+set (GUDHI_PATCH_VERSION 0a13)
set(GUDHI_VERSION ${GUDHI_MAJOR_VERSION}.${GUDHI_MINOR_VERSION}.${GUDHI_PATCH_VERSION})
message(STATUS "GUDHI version : ${GUDHI_VERSION}")
diff --git a/src/python/setup.py.in b/src/python/setup.py.in
index dc163a37..875f1577 100644
--- a/src/python/setup.py.in
+++ b/src/python/setup.py.in
@@ -84,6 +84,6 @@ setup(
long_description_content_type='text/x-rst',
long_description=long_description,
ext_modules = ext_modules,
- install_requires = ['cython','numpy >= 1.9',],
- setup_requires = ['numpy >= 1.9','pybind11',],
+ install_requires = ['numpy >= 1.9',],
+ setup_requires = ['cython','numpy >= 1.9','pybind11',],
)