Skip to content

PyHEADTAIL v1.13.4

Compare
Choose a tag to compare
@pycompleteuser pycompleteuser released this 09 Jul 13:01
· 195 commits to master since this release

On the way to more and more python3 support:

cython requires compiler_directives={'language_level' : "3"} for python3 support -- in order to remain compatible with python2, we include

cythonize(extensions, compiler_directives={'language_level' : sys.version_info[0]})

into the setup.py (thanks to stackoverflow).