Skip to content

Commit

Permalink
V1.19.00
Browse files Browse the repository at this point in the history
  • Loading branch information
jgyates committed Dec 18, 2023
1 parent bcb1a26 commit a024d47
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions genloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ def CheckSystem(self):
["paho.mqtt.client", "paho-mqtt", None], # for genmqtt
["OpenSSL", "pyopenssl", None], # SSL
["spidev", "spidev", None], # spidev
["mopeka_pro_check","mopeka_pro_check", None], # mopeka_pro_check for genmopeka
["voipms", "voipms", None] # voipms for gensms_voip
# ['fluids', 'fluids', None] # fluids for genmopeka
]
Expand All @@ -197,9 +196,7 @@ def CheckSystem(self):

for Module in ModuleList:
# mopeka_pro_check is only for Python 3.7 and higher
if (
Module[0] == "mopeka_pro_check" or Module[0] == "fluids"
) and sys.version_info < (3, 7):
if (Module[0] == "fluids") and sys.version_info < (3, 7):
continue
if not self.LibraryIsInstalled(Module[0]):
self.LogInfo(
Expand Down

0 comments on commit a024d47

Please sign in to comment.