Skip to content

Commit

Permalink
fix version mismatch between setup.py and requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
jziolkowski committed Apr 11, 2022
1 parent 793203d commit 1ac0790
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def get_version():
python_requires='>=3.6',
install_requires=[
"paho_mqtt>=1.4",
"PyQt5==5.14.2"
"PyQt5>=5.14.2,<6"
],
packages=['GUI', 'Util'],
entry_points=entry_points,
Expand Down
2 changes: 1 addition & 1 deletion tdmgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

# TODO: rework device export

__version__ = "0.2.11"
__version__ = "0.2.12"
__tasmota_minimum__ = "6.6.0.17"


Expand Down

0 comments on commit 1ac0790

Please sign in to comment.