kuuko pushed a commit to branch master.

commit 7b77e37b8ca946edecc29f5ddc1a64b3c9deb593
Author: Kai Huuhko <[email protected]>
Date:   Sat May 4 17:15:09 2013 +0000

    Add an example for installing to a custom prefix to the INSTALL file and
    drop the Cython required version to 0.17.0.
---
 INSTALL  | 8 ++++++--
 setup.py | 4 ++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/INSTALL b/INSTALL
index c8cbcd8..d8c749b 100644
--- a/INSTALL
+++ b/INSTALL
@@ -5,8 +5,8 @@
  * Python 2.7 or higher (http://www.python.org/)
    - Tested with Python 2.7 / 3.2
 
- * Cython 0.17.3 or higher (http://cython.org/)
-   - Tested with Cython 0.17.3
+ * Cython 0.17.0 or higher (http://cython.org/)
+   - Tested with Cython 0.17.1
 
  * EFL core library
    - eo, evas, ecore, edje, elementary, edbus and emotion
@@ -58,6 +58,10 @@
 
     python3 setup.py install (also cython need to be installed with py3)
 
+ * Install with a custom prefix:
+
+    python setup.py install --prefix=/MY_PREFIX
+
 
 
 4. DOCUMENTATION:
diff --git a/setup.py b/setup.py
index 2d84e8a..388043b 100755
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ try:
     from Cython.Build import cythonize
     import Cython.Compiler.Options
 
-    min_ver, cur_ver = "0.17.3", Cython.__version__
+    min_ver, cur_ver = "0.17.0", Cython.__version__
     assert StrictVersion(cur_ver) >= StrictVersion(min_ver)
     print("Found Cython: %s" % cur_ver)
 
@@ -109,7 +109,7 @@ else:
                             extra_compile_args = edje_cflags,
                             extra_link_args = edje_libs + eina_libs + 
evas_libs)
     modules.append(edje_ext)
-    
+
     # Edje_Edit
     edje_edit_ext = Extension("efl.edje_edit", ["efl/edje/efl.edje_edit.pyx"],
                             define_macros = 
[('EDJE_EDIT_IS_UNSTABLE_AND_I_KNOW_ABOUT_IT', None)],

-- 

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may

Reply via email to