Depend on cython 0.20 to use the @cython.no_gc_clear decorator
This commit is contained in:
parent
a1cb7f9efc
commit
bb31b34613
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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('.'),
|
||||||
|
|
Loading…
Reference in a new issue