Skip to content
Snippets Groups Projects
Unverified Commit 47d078d0 authored by Martine Lenders's avatar Martine Lenders
Browse files

Pin Cython dependency to <3

DTLSSocket currently does not build with Cython 3.0.0 (released 2023-07-17).
parent a66fb95e
No related branches found
No related tags found
No related merge requests found
[build-system]
requires = ["Cython", "setuptools", "wheel"]
requires = ["Cython<3", "setuptools", "wheel"]
......@@ -41,8 +41,8 @@ setup(
url = "https://git.fslab.de/jkonra2m/tinydtls-cython",
py_modules = [ "DTLSSocket.DTLSSocket"],
cmdclass = {"build_ext": prepare_tinydtls},
setup_requires = ['setuptools>=18.0','Cython'],
install_requires = ['Cython'],
setup_requires = ['setuptools>=18.0','Cython<3'],
install_requires = ['Cython<3'],
ext_modules = [Extension("DTLSSocket.dtls",
[
"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