Skip to content
Snippets Groups Projects
Unverified Commit 3dde4869 authored by Jannis Konrad's avatar Jannis Konrad Committed by GitHub
Browse files

Merge pull request #9 from miri64/cython-lt-3

Pin Cython dependency to <3
parents a66fb95e 47d078d0
No related branches found
No related tags found
No related merge requests found
[build-system] [build-system]
requires = ["Cython", "setuptools", "wheel"] requires = ["Cython<3", "setuptools", "wheel"]
...@@ -41,8 +41,8 @@ setup( ...@@ -41,8 +41,8 @@ setup(
url = "https://git.fslab.de/jkonra2m/tinydtls-cython", url = "https://git.fslab.de/jkonra2m/tinydtls-cython",
py_modules = [ "DTLSSocket.DTLSSocket"], py_modules = [ "DTLSSocket.DTLSSocket"],
cmdclass = {"build_ext": prepare_tinydtls}, cmdclass = {"build_ext": prepare_tinydtls},
setup_requires = ['setuptools>=18.0','Cython'], setup_requires = ['setuptools>=18.0','Cython<3'],
install_requires = ['Cython'], install_requires = ['Cython<3'],
ext_modules = [Extension("DTLSSocket.dtls", ext_modules = [Extension("DTLSSocket.dtls",
[ [
"DTLSSocket/dtls.pyx", "DTLSSocket/dtls.pyx",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment