Depend on cython 0.20 to use the @cython.no_gc_clear decorator

This commit is contained in:
hofmockel 2014-01-23 08:06:14 +01:00
parent a1cb7f9efc
commit bb31b34613
2 changed files with 2 additions and 2 deletions

View file

@ -33,5 +33,5 @@ Building pyrocksdb
$ virtualenv pyrocks_test $ virtualenv pyrocks_test
$ cd pyrocks_test $ cd pyrocks_test
$ . bin/active $ . bin/active
$ pip install Cython $ pip install "Cython>=0.20"
$ pip install git+git://github.com/stephan-hof/pyrocksdb.git $ pip install git+git://github.com/stephan-hof/pyrocksdb.git

View file

@ -29,7 +29,7 @@ setup(
name="pyrocksdb", name="pyrocksdb",
install_requires=[ install_requires=[
'setuptools', 'setuptools',
'Cython', 'Cython>=0.20',
], ],
package_dir={'rocksdb': 'rocksdb'}, package_dir={'rocksdb': 'rocksdb'},
packages=find_packages('.'), packages=find_packages('.'),