Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tinydtls-cython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jannis Konrad
tinydtls-cython
Commits
47d078d0
Unverified
Commit
47d078d0
authored
1 year ago
by
Martine Lenders
Browse files
Options
Downloads
Patches
Plain Diff
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
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pyproject.toml
+1
-1
1 addition, 1 deletion
pyproject.toml
setup.py
+2
-2
2 additions, 2 deletions
setup.py
with
3 additions
and
3 deletions
pyproject.toml
+
1
−
1
View file @
47d078d0
[build-system]
requires
=
[
"Cython"
,
"setuptools"
,
"wheel"
]
requires
=
[
"Cython
<3
"
,
"setuptools"
,
"wheel"
]
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
2
View file @
47d078d0
...
...
@@ -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
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment