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
Pipeline #249793 passed
......@@ -51,6 +51,9 @@ Funded by the Deutsche Forschungsgemeinschaft (DFG, German Research Foundation)
## Recent changes
**8.2.3** - 2023-03-29
- removed legacy attributes from serialization and streaming
**8.2.2** - 2023-03-29
- fixed a type hint which depended on windows
......
......@@ -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.2',
version='8.2.3',
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",
......
......@@ -109,7 +109,7 @@ class Measurement(Figure):
# list is empty provide all attributes of the default-serialization
if not keys:
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:
keys += ['timestamp']
dictionary = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment