Release 1.3.0
This commit is contained in:
parent
2f1e080df3
commit
88923622a9
@ -1,6 +1,11 @@
|
|||||||
Change Log
|
Change Log
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
**1.3.0** (2023-08-01)
|
||||||
|
|
||||||
|
- added E.ON Hungary; refactored DSMR specifications to fix obis reference conflicts
|
||||||
|
(`PR #137 <https://github.com/ndokter/dsmr_parser/pull/137>`_ by `balazs92117 <https://github.com/balazs92117>`_)
|
||||||
|
|
||||||
**1.2.4** (2023-07-11)
|
**1.2.4** (2023-07-11)
|
||||||
|
|
||||||
- EQUIPMENT IDENTIFIER is wrong for Fluvius meters when other mbus devices are present
|
- EQUIPMENT IDENTIFIER is wrong for Fluvius meters when other mbus devices are present
|
||||||
|
2
setup.py
2
setup.py
@ -7,7 +7,7 @@ setup(
|
|||||||
author_email='mail@nldr.net',
|
author_email='mail@nldr.net',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
url='https://github.com/ndokter/dsmr_parser',
|
url='https://github.com/ndokter/dsmr_parser',
|
||||||
version='1.2.4',
|
version='1.3.0',
|
||||||
packages=find_packages(exclude=('test', 'test.*')),
|
packages=find_packages(exclude=('test', 'test.*')),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'pyserial>=3,<4',
|
'pyserial>=3,<4',
|
||||||
|
@ -21,7 +21,7 @@ class TelegramParserV5Test(unittest.TestCase):
|
|||||||
telegram = parser.parse(TELEGRAM_V5, throw_ex=True)
|
telegram = parser.parse(TELEGRAM_V5, throw_ex=True)
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
assert False, f"parse trigged an exception {ex}"
|
assert False, f"parse trigged an exception {ex}"
|
||||||
|
print('test: ', type(telegram.P1_MESSAGE_HEADER), telegram.P1_MESSAGE_HEADER.__dict__)
|
||||||
# P1_MESSAGE_HEADER (1-3:0.2.8)
|
# P1_MESSAGE_HEADER (1-3:0.2.8)
|
||||||
assert isinstance(telegram.P1_MESSAGE_HEADER, CosemObject)
|
assert isinstance(telegram.P1_MESSAGE_HEADER, CosemObject)
|
||||||
assert telegram.P1_MESSAGE_HEADER.unit is None
|
assert telegram.P1_MESSAGE_HEADER.unit is None
|
||||||
|
Loading…
Reference in New Issue
Block a user