Skip to content
Snippets Groups Projects
Commit 7b83da0f authored by Matthias Stefan Bodenbenner's avatar Matthias Stefan Bodenbenner
Browse files

8.2.2 - fixed a type hint which depended on windows

parent 5758bf5a
Branches
Tags 8.2.2
No related merge requests found
Pipeline #249752 passed
[![Build](https://git-ce.rwth-aachen.de/wzl-mq-ms/forschung-lehre/lava/unified-device-interface/python/badges/master/pipeline.svg)](https://git-ce.rwth-aachen.de/wzl-mq-ms/forschung-lehre/lava/unified-device-interface/python/commits/master)
# Python Unified Device Interface
Current stable version: 8.2.1
Current stable version: 8.2.2
## Installation
1. Install the WZL-UDI package via pip
......@@ -51,6 +51,9 @@ Funded by the Deutsche Forschungsgemeinschaft (DFG, German Research Foundation)
## Recent changes
**8.2.2** - 2023-03-29
- fixed a type hint which depended on windows
**8.2.1** - 2023-03-25
- removed utilities dependency, by integrating logger into wzl-udi library
......
......@@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='wzl-udi',
version='8.2.1',
version='8.2.2',
url='https://git-ce.rwth-aachen.de/wzl-mq-public/soil/python',
project_urls={
"Bug Tracker": "https://git-ce.rwth-aachen.de/wzl-mq-public/soil/python/-/issues",
......
......@@ -57,7 +57,7 @@ class HTTPServer(object):
"""
def __init__(self, loop: asyncio.ProactorEventLoop, host: str, port: int, model: Component,
def __init__(self, loop: asyncio.AbstractEventLoop, host: str, port: int, model: Component,
dataformat: str = 'json', legacy_mode=False, scheduler: StreamScheduler = None):
"""Constructor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment