Skip to content

Commit 80e38db

Browse files
authored
Merge pull request #65 from scs/feature/update
Feature/update
2 parents d497a3e + 092151d commit 80e38db

37 files changed

+471
-577
lines changed

Pipfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@ name = "pypi"
55

66
[packages]
77
aioserial = "~=1.3.1"
8-
asyncio-mqtt = "~=0.16.1"
9-
gurux-dlms = "==1.0.143"
8+
asyncio-mqtt = "~=0.16.2"
9+
gurux-dlms = "==1.0.150"
10+
paho-mqtt = "~=1.6.1"
1011

1112
[dev-packages]
1213
autopep8 = "*"
1314
chardet = "*"
1415
isort = "*"
1516
licenseheaders = "*"
1617
pipenv-setup = "*"
18+
plette = "~=0.4"
1719
pylint = "*"
1820
pytest = "*"
1921
pytest-asyncio = "*"

Pipfile.lock

Lines changed: 429 additions & 525 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

debian/postinst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ echo -n "Installing dependencies using pip.."
4444
# write a pip requirements.txt for automatic dependency installation
4545
echo "-i https://pypi.org/simple
4646
aioserial==1.3.1
47-
asyncio-mqtt==0.16.1
48-
gurux-dlms==1.0.143
47+
asyncio-mqtt==0.16.2
48+
gurux-dlms==1.0.150
4949
paho-mqtt==1.6.1
5050
pyserial==3.5" > /tmp/requirements.txt
5151
# install all required dependencies

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
#
3-
# Copyright (C) 2022 Supercomputing Systems AG
3+
# Copyright (C) 2024 Supercomputing Systems AG
44
# This file is part of smartmeter-datacollector.
55
#
66
# SPDX-License-Identifier: GPL-2.0-only
@@ -39,7 +39,6 @@
3939
"Development Status :: 5 - Production/Stable",
4040
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
4141
"Programming Language :: Python",
42-
"Programming Language :: Python :: 3.7",
4342
"Programming Language :: Python :: 3.8",
4443
"Programming Language :: Python :: 3.9",
4544
"Programming Language :: Python :: 3.10",
@@ -53,8 +52,8 @@
5352
include_package_data=True,
5453
install_requires=[
5554
'aioserial==1.3.1',
56-
'asyncio-mqtt==0.16.1',
57-
'gurux-dlms==1.0.143',
55+
'asyncio-mqtt==0.16.2',
56+
'gurux-dlms==1.0.150',
5857
'paho-mqtt==1.6.1',
5958
'pyserial==3.5'
6059
],

smartmeter_datacollector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2022 Supercomputing Systems AG
2+
# Copyright (C) 2024 Supercomputing Systems AG
33
# This file is part of smartmeter-datacollector.
44
#
55
# SPDX-License-Identifier: GPL-2.0-only

smartmeter_datacollector/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2022 Supercomputing Systems AG
2+
# Copyright (C) 2024 Supercomputing Systems AG
33
# This file is part of smartmeter-datacollector.
44
#
55
# SPDX-License-Identifier: GPL-2.0-only

smartmeter_datacollector/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2022 Supercomputing Systems AG
2+
# Copyright (C) 2024 Supercomputing Systems AG
33
# This file is part of smartmeter-datacollector.
44
#
55
# SPDX-License-Identifier: GPL-2.0-only

smartmeter_datacollector/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2022 Supercomputing Systems AG
2+
# Copyright (C) 2024 Supercomputing Systems AG
33
# This file is part of smartmeter-datacollector.
44
#
55
# SPDX-License-Identifier: GPL-2.0-only

smartmeter_datacollector/collector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2022 Supercomputing Systems AG
2+
# Copyright (C) 2024 Supercomputing Systems AG
33
# This file is part of smartmeter-datacollector.
44
#
55
# SPDX-License-Identifier: GPL-2.0-only

smartmeter_datacollector/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2022 Supercomputing Systems AG
2+
# Copyright (C) 2024 Supercomputing Systems AG
33
# This file is part of smartmeter-datacollector.
44
#
55
# SPDX-License-Identifier: GPL-2.0-only

0 commit comments

Comments
 (0)