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

8.2.3 - removed legacy attributes from serialization and streaming

parent 7b83da0f
No related branches found
No related tags found
No related merge requests found
...@@ -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.3** - 2023-03-29
- removed legacy attributes from serialization and streaming
**8.2.2** - 2023-03-29 **8.2.2** - 2023-03-29
- fixed a type hint which depended on windows - fixed a type hint which depended on windows
......
...@@ -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.2', version='8.2.3',
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",
......
...@@ -109,7 +109,7 @@ class Measurement(Figure): ...@@ -109,7 +109,7 @@ class Measurement(Figure):
# list is empty provide all attributes of the default-serialization # list is empty provide all attributes of the default-serialization
if not keys: if not keys:
keys = ['uuid', 'name', 'description', 'datatype', 'value', 'dimension', 'range', 'timestamp', 'label', keys = ['uuid', 'name', 'description', 'datatype', 'value', 'dimension', 'range', 'timestamp', 'label',
'nonce', 'covariance', 'unit', 'ontology'] 'covariance', 'unit'] #, 'ontology']
if 'value' in keys and 'timestamp' not in keys: if 'value' in keys and 'timestamp' not in keys:
keys += ['timestamp'] keys += ['timestamp']
dictionary = {} dictionary = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment