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
Compare revisions
584df87b835cd8e6ff9f504990e335ec751d20fa to abe12bedca26ca52ab6d0753337d8df2e7925eda
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
jkonra2m/tinydtls-cython
Select target project
No results found
abe12bedca26ca52ab6d0753337d8df2e7925eda
Select Git revision
Branches
master
Tags
0.1.14
0.1.16
0.1.17
0.1.18
0.1.19
0.2.0
0.2.1
Swap
Target
jkonra2m/tinydtls-cython
Select target project
jkonra2m/tinydtls-cython
1 result
584df87b835cd8e6ff9f504990e335ec751d20fa
Select Git revision
Branches
master
Tags
0.1.14
0.1.16
0.1.17
0.1.18
0.1.19
0.2.0
0.2.1
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
setup: Explicitly compile ecc.c
· c8f5a7f1
chrysn
authored
2 years ago
c8f5a7f1
Merge branch 'chrysn-pull-requests-explicit-ecc-objectfile'
· 5e08b3a5
Jannis Konrad
authored
2 years ago
5e08b3a5
Bump Version for release
· abe12bed
Jannis Konrad
authored
2 years ago
abe12bed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+2
-1
2 additions, 1 deletion
setup.py
with
2 additions
and
1 deletion
setup.py
View file @
abe12bed
...
...
@@ -32,7 +32,7 @@ with open("README.md", "r") as fh:
setup
(
name
=
"
DTLSSocket
"
,
version
=
'
0.1.1
3
'
,
version
=
'
0.1.1
4
'
,
description
=
"
DTLSSocket is a cython wrapper for tinydtls with a Socket like interface
"
,
long_description
=
long_description
,
long_description_content_type
=
"
text/markdown
"
,
...
...
@@ -50,6 +50,7 @@ setup(
"
DTLSSocket/tinydtls/crypto.c
"
,
"
DTLSSocket/tinydtls/dtls.c
"
,
"
DTLSSocket/tinydtls/dtls_debug.c
"
,
"
DTLSSocket/tinydtls/ecc/ecc.c
"
,
"
DTLSSocket/tinydtls/dtls_time.c
"
,
"
DTLSSocket/tinydtls/hmac.c
"
,
"
DTLSSocket/tinydtls/netq.c
"
,
...
...
This diff is collapsed.
Click to expand it.