diff --git a/HISTORY.rst b/HISTORY.rst index 7f7a075..036e018 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,14 @@ History ======= -1.3.2 (2022-01-13) +1.3.3 (2023-??-??) +------------------ + +* updated copyright statements +* dropped support for Python 3.7 +* added support for Python 3.9 and 3.10 + +1.3.2 (2023-01-13) ------------------ * updated copyright statements diff --git a/LICENSE b/LICENSE index 0e6b53e..0ff34ce 100644 --- a/LICENSE +++ b/LICENSE @@ -3,7 +3,7 @@ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Easy-to-use Python communication module for Heliotherm heat pumps. - Copyright (C) 2022 Daniel Strigl + Copyright (C) 2023 Daniel Strigl This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/docs/conf.py b/docs/conf.py index f2eccc5..c47072c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ # General information about the project. project = "HtHeatpump" -copyright = "2022, Daniel Strigl" +copyright = "2023, Daniel Strigl" # The version info for the project you're documenting, acts as replacement # for |version| and |release|, also used in various other places throughout diff --git a/htheatpump/__init__.py b/htheatpump/__init__.py index 80c8e25..8b6bb99 100644 --- a/htheatpump/__init__.py +++ b/htheatpump/__init__.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/__main__.py b/htheatpump/__main__.py index 17b4bcd..9990474 100644 --- a/htheatpump/__main__.py +++ b/htheatpump/__main__.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/__version__.py b/htheatpump/__version__.py index 2820a21..8d3ebe9 100644 --- a/htheatpump/__version__.py +++ b/htheatpump/__version__.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/aiohtheatpump.py b/htheatpump/aiohtheatpump.py index 6846bfc..2621745 100644 --- a/htheatpump/aiohtheatpump.py +++ b/htheatpump/aiohtheatpump.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/htheatpump.py b/htheatpump/htheatpump.py index fd8310d..c9d0521 100644 --- a/htheatpump/htheatpump.py +++ b/htheatpump/htheatpump.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/htparams.py b/htheatpump/htparams.py index 3f77f9e..ecb6f3a 100644 --- a/htheatpump/htparams.py +++ b/htheatpump/htparams.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/httimeprog.py b/htheatpump/httimeprog.py index ee6beaa..fed0041 100644 --- a/htheatpump/httimeprog.py +++ b/htheatpump/httimeprog.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/protocol.py b/htheatpump/protocol.py index b2c8533..7cb92f5 100644 --- a/htheatpump/protocol.py +++ b/htheatpump/protocol.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/__init__.py b/htheatpump/scripts/__init__.py index 2e583dc..680a8f4 100644 --- a/htheatpump/scripts/__init__.py +++ b/htheatpump/scripts/__init__.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/daemon.py b/htheatpump/scripts/daemon.py index 8417169..ff96123 100644 --- a/htheatpump/scripts/daemon.py +++ b/htheatpump/scripts/daemon.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # daemon - Forking the current process into a daemon -# Copyright (c) 2022 Daniel Strigl +# Copyright (c) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htbackup.py b/htheatpump/scripts/htbackup.py index 4d6733d..262dcaf 100644 --- a/htheatpump/scripts/htbackup.py +++ b/htheatpump/scripts/htbackup.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htbackup_async.py b/htheatpump/scripts/htbackup_async.py index fec1f97..f846fa2 100644 --- a/htheatpump/scripts/htbackup_async.py +++ b/htheatpump/scripts/htbackup_async.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htcomplparams.py b/htheatpump/scripts/htcomplparams.py index 40114f3..68bb54d 100644 --- a/htheatpump/scripts/htcomplparams.py +++ b/htheatpump/scripts/htcomplparams.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htcomplparams_async.py b/htheatpump/scripts/htcomplparams_async.py index e058b14..fe8938f 100644 --- a/htheatpump/scripts/htcomplparams_async.py +++ b/htheatpump/scripts/htcomplparams_async.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htdatetime.py b/htheatpump/scripts/htdatetime.py index 131d6e2..cfffc8f 100644 --- a/htheatpump/scripts/htdatetime.py +++ b/htheatpump/scripts/htdatetime.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htdatetime_async.py b/htheatpump/scripts/htdatetime_async.py index b6841d6..bc900f2 100644 --- a/htheatpump/scripts/htdatetime_async.py +++ b/htheatpump/scripts/htdatetime_async.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htfastquery.py b/htheatpump/scripts/htfastquery.py index 149bfdd..cb6f9cf 100644 --- a/htheatpump/scripts/htfastquery.py +++ b/htheatpump/scripts/htfastquery.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htfastquery_async.py b/htheatpump/scripts/htfastquery_async.py index 56ad12e..ba5e072 100644 --- a/htheatpump/scripts/htfastquery_async.py +++ b/htheatpump/scripts/htfastquery_async.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htfaultlist.py b/htheatpump/scripts/htfaultlist.py index 90ee0ab..d950dec 100644 --- a/htheatpump/scripts/htfaultlist.py +++ b/htheatpump/scripts/htfaultlist.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htfaultlist_async.py b/htheatpump/scripts/htfaultlist_async.py index b0e02b3..44c8a9c 100644 --- a/htheatpump/scripts/htfaultlist_async.py +++ b/htheatpump/scripts/htfaultlist_async.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/hthttp.py b/htheatpump/scripts/hthttp.py index 9cd6dcd..b1f01ec 100644 --- a/htheatpump/scripts/hthttp.py +++ b/htheatpump/scripts/hthttp.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htquery.py b/htheatpump/scripts/htquery.py index 8820d11..670cf9f 100644 --- a/htheatpump/scripts/htquery.py +++ b/htheatpump/scripts/htquery.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htquery_async.py b/htheatpump/scripts/htquery_async.py index f0edde5..d3ac0f0 100644 --- a/htheatpump/scripts/htquery_async.py +++ b/htheatpump/scripts/htquery_async.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htset.py b/htheatpump/scripts/htset.py index cb8bd04..18b7377 100644 --- a/htheatpump/scripts/htset.py +++ b/htheatpump/scripts/htset.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htset_async.py b/htheatpump/scripts/htset_async.py index 1296bf3..29dcc26 100644 --- a/htheatpump/scripts/htset_async.py +++ b/htheatpump/scripts/htset_async.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htshell.py b/htheatpump/scripts/htshell.py index bb37dbb..3a95d4e 100644 --- a/htheatpump/scripts/htshell.py +++ b/htheatpump/scripts/htshell.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/htshell_async.py b/htheatpump/scripts/htshell_async.py index 5665ac4..bc246f9 100644 --- a/htheatpump/scripts/htshell_async.py +++ b/htheatpump/scripts/htshell_async.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/httimeprog.py b/htheatpump/scripts/httimeprog.py index ab2577f..48f7ee8 100644 --- a/htheatpump/scripts/httimeprog.py +++ b/htheatpump/scripts/httimeprog.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/scripts/httimeprog_async.py b/htheatpump/scripts/httimeprog_async.py index cf01e56..28dddca 100644 --- a/htheatpump/scripts/httimeprog_async.py +++ b/htheatpump/scripts/httimeprog_async.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/htheatpump/utils.py b/htheatpump/utils.py index f1532e8..d4b770b 100644 --- a/htheatpump/utils.py +++ b/htheatpump/utils.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/samples/comp_checksum.py b/samples/comp_checksum.py index 173f4d4..47d76b6 100644 --- a/samples/comp_checksum.py +++ b/samples/comp_checksum.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/samples/htfastquery_test.py b/samples/htfastquery_test.py index 5a4c951..4d243d5 100644 --- a/samples/htfastquery_test.py +++ b/samples/htfastquery_test.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/samples/htfastquery_test_async.py b/samples/htfastquery_test_async.py index 36a9fc8..fb7395b 100644 --- a/samples/htfastquery_test_async.py +++ b/samples/htfastquery_test_async.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/__init__.py b/tests/__init__.py index 2e583dc..680a8f4 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/conftest.py b/tests/conftest.py index 46fc2a4..b1670e7 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_aiohtheatpump.py b/tests/test_aiohtheatpump.py index 638c5f2..3113521 100644 --- a/tests/test_aiohtheatpump.py +++ b/tests/test_aiohtheatpump.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_htheatpump.py b/tests/test_htheatpump.py index 9b8a88e..63952ad 100644 --- a/tests/test_htheatpump.py +++ b/tests/test_htheatpump.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_htparams.py b/tests/test_htparams.py index 89f708b..b506078 100644 --- a/tests/test_htparams.py +++ b/tests/test_htparams.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_htparams_async.py b/tests/test_htparams_async.py index b3ddea8..b0cd2c6 100644 --- a/tests/test_htparams_async.py +++ b/tests/test_htparams_async.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_httimeprog.py b/tests/test_httimeprog.py index 3b926cd..27015b9 100644 --- a/tests/test_httimeprog.py +++ b/tests/test_httimeprog.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_utils.py b/tests/test_utils.py index 39d100e..0a1514f 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # htheatpump - Serial communication module for Heliotherm heat pumps -# Copyright (C) 2022 Daniel Strigl +# Copyright (C) 2023 Daniel Strigl # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by