# HG changeset patch # User Arne Babenhauserheide <a...@draketo.de> # Date 1302228745 0 # Node ID d4979bcd090e7492806f77f5c0d62e4ceb365aee # Parent a91a6eb7e986103fae30942c76fa910973b4de22 builds again with cython 0.14.1
diff --git a/pyhurd/_hurd.pxd b/pyhurd/_hurd.pxd --- a/pyhurd/_hurd.pxd +++ b/pyhurd/_hurd.pxd @@ -26,7 +26,7 @@ 51 Franklin Street, Fifth Floor, Boston, cdef extern from "gnu_source.h": pass -include "stdlib.pxd" +include "stdlib.pxd" # TODO: this should be taken from cython directly. cdef extern from "time.h": ctypedef long int time_t diff --git a/pyhurd/_hurd.py b/pyhurd/_hurd.py --- a/pyhurd/_hurd.py +++ b/pyhurd/_hurd.py @@ -118,7 +118,7 @@ class IO: return error, new_position - def set_all_openmodes (self, int newbits): + def set_all_openmodes (self, newbits): ''' Return: error ''' diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ 51 Franklin Street, Fifth Floor, Boston, ## Cython basics -supported_cython_versions = '0.9.8', '0.10', '0.10.2', '0.10.3' +supported_cython_versions = '0.9.8', '0.10', '0.10.2', '0.10.3', '0.14.1' try: import Cython.Compiler.Version