tinytoolslib 0.3.1__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/PKG-INFO +1 -1
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/pyproject.toml +1 -1
- tinytoolslib-0.3.2/tinytoolslib/__version__.py +1 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib/models.py +1 -1
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib.egg-info/PKG-INFO +1 -1
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib.egg-info/top_level.txt +0 -1
- tinytoolslib-0.3.1/tinytoolslib/__version__.py +0 -1
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/README.md +0 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/setup.cfg +0 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib/__init__.py +0 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib/constants.py +0 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib/discovery.py +0 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib/exceptions.py +0 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib/flash.py +0 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib/parsers.py +0 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib/requests.py +0 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib.egg-info/SOURCES.txt +0 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib.egg-info/dependency_links.txt +0 -0
- {tinytoolslib-0.3.1 → tinytoolslib-0.3.2}/tinytoolslib.egg-info/requires.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tinytoolslib
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Set of tools for use with Tinycontrol devices like LK2.X, LK3.X, LK4.X or tcPDU.
|
|
5
5
|
Author-email: Bartek Barszczewski <tinycontrol.software@gmail.com>
|
|
6
6
|
Keywords: tinycontrol,lk,tcpdu
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.3.2'
|
|
@@ -1455,7 +1455,7 @@ class LK_HW_40_mini(LK_HW_40):
|
|
|
1455
1455
|
def check_version(
|
|
1456
1456
|
cls, hardware_version: Union[str, None], software_version: str
|
|
1457
1457
|
) -> bool:
|
|
1458
|
-
return hardware_version
|
|
1458
|
+
return hardware_version in ["4.0", "4.1"] and software_version.endswith("mini")
|
|
1459
1459
|
|
|
1460
1460
|
# Unset few commands - there are no OUT, PWM in LK4 mini
|
|
1461
1461
|
_set_out = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tinytoolslib
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Set of tools for use with Tinycontrol devices like LK2.X, LK3.X, LK4.X or tcPDU.
|
|
5
5
|
Author-email: Bartek Barszczewski <tinycontrol.software@gmail.com>
|
|
6
6
|
Keywords: tinycontrol,lk,tcpdu
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '0.3.1'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|