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

8.2.5 - relaxed required versions of dependencies to avoid conflicts

parent b215711b
No related branches found
No related tags found
No related merge requests found
[![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) [![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 # Python Unified Device Interface
Current stable version: 8.2.4 Current stable version: 8.2.5
## 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.5** - 2023-04-17
- relaxed required versions of dependencies to avoid conflicts
**8.2.4** - 2023-04-13 **8.2.4** - 2023-04-13
- updated dependency, so that wzl-udi is also compatible with Python 3.11 - updated dependency, so that wzl-udi is also compatible with Python 3.11
......
aiohttp==3.8.4 aiohttp==3.8.4
Deprecated==1.2.13 Deprecated==1.2.13
jinja2==3.0.3 jinja2==3.0.3
nest-asyncio==1.4.3 nest-asyncio==1.5.6
pytest==7.1.1 pytest==7.1.1
sphinx==3.5.2 sphinx==3.5.2
sphinx-rtd-theme==1.0.0 sphinx-rtd-theme==1.0.0
strict-rfc3339==0.7 strict-rfc3339==0.7
wzl-mqtt==2.5.1 wzl-mqtt~=2.5.3
\ No newline at end of file \ No newline at end of file
...@@ -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.4', version='8.2.5',
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",
...@@ -22,9 +22,9 @@ setup(name='wzl-udi', ...@@ -22,9 +22,9 @@ setup(name='wzl-udi',
"Operating System :: OS Independent", "Operating System :: OS Independent",
], ],
install_requires=['aiohttp~=3.8.4', install_requires=['aiohttp~=3.8.4',
'Deprecated==1.2.13', 'Deprecated~=1.2.13',
'nest-asyncio==1.5.6', 'nest-asyncio~=1.5.6',
'strict-rfc3339==0.7', 'strict-rfc3339==0.7',
'wzl-mqtt==2.5.1' 'wzl-mqtt~=2.5.3'
], ],
zip_safe=False) zip_safe=False)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment