Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Python Unified Device Interface
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WZL-IQS-Public
Sensor Interfacing Language (SOIL)
Python Unified Device Interface
Commits
7b83da0f
Commit
7b83da0f
authored
2 years ago
by
Matthias Stefan Bodenbenner
Browse files
Options
Downloads
Patches
Plain Diff
8.2.2 - fixed a type hint which depended on windows
parent
5758bf5a
No related branches found
No related tags found
No related merge requests found
Pipeline
#249752
passed
2 years ago
Stage: build
Stage: push
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+4
-1
4 additions, 1 deletion
README.md
setup.py
+1
-1
1 addition, 1 deletion
setup.py
src/http/server.py
+1
-1
1 addition, 1 deletion
src/http/server.py
with
6 additions
and
3 deletions
README.md
+
4
−
1
View file @
7b83da0f
[

](https://git-ce.rwth-aachen.de/wzl-mq-ms/forschung-lehre/lava/unified-device-interface/python/commits/master)
[

](https://git-ce.rwth-aachen.de/wzl-mq-ms/forschung-lehre/lava/unified-device-interface/python/commits/master)
# Python Unified Device Interface
# Python Unified Device Interface
Current stable version: 8.2.
1
Current stable version: 8.2.
2
## Installation
## Installation
1.
Install the WZL-UDI package via pip
1.
Install the WZL-UDI package via pip
...
@@ -51,6 +51,9 @@ Funded by the Deutsche Forschungsgemeinschaft (DFG, German Research Foundation)
...
@@ -51,6 +51,9 @@ Funded by the Deutsche Forschungsgemeinschaft (DFG, German Research Foundation)
## Recent changes
## Recent changes
**8.2.2**
- 2023-03-29
-
fixed a type hint which depended on windows
**8.2.1**
- 2023-03-25
**8.2.1**
- 2023-03-25
-
removed utilities dependency, by integrating logger into wzl-udi library
-
removed utilities dependency, by integrating logger into wzl-udi library
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
7b83da0f
...
@@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
...
@@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
long_description
=
fh
.
read
()
long_description
=
fh
.
read
()
setup
(
name
=
'
wzl-udi
'
,
setup
(
name
=
'
wzl-udi
'
,
version
=
'
8.2.
1
'
,
version
=
'
8.2.
2
'
,
url
=
'
https://git-ce.rwth-aachen.de/wzl-mq-public/soil/python
'
,
url
=
'
https://git-ce.rwth-aachen.de/wzl-mq-public/soil/python
'
,
project_urls
=
{
project_urls
=
{
"
Bug Tracker
"
:
"
https://git-ce.rwth-aachen.de/wzl-mq-public/soil/python/-/issues
"
,
"
Bug Tracker
"
:
"
https://git-ce.rwth-aachen.de/wzl-mq-public/soil/python/-/issues
"
,
...
...
This diff is collapsed.
Click to expand it.
src/http/server.py
+
1
−
1
View file @
7b83da0f
...
@@ -57,7 +57,7 @@ class HTTPServer(object):
...
@@ -57,7 +57,7 @@ class HTTPServer(object):
"""
"""
def
__init__
(
self
,
loop
:
asyncio
.
Pro
act
or
EventLoop
,
host
:
str
,
port
:
int
,
model
:
Component
,
def
__init__
(
self
,
loop
:
asyncio
.
Abstr
actEventLoop
,
host
:
str
,
port
:
int
,
model
:
Component
,
dataformat
:
str
=
'
json
'
,
legacy_mode
=
False
,
scheduler
:
StreamScheduler
=
None
):
dataformat
:
str
=
'
json
'
,
legacy_mode
=
False
,
scheduler
:
StreamScheduler
=
None
):
"""
Constructor
"""
Constructor
...
...
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