Skip to content

Commit

Permalink
1.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yozik04 committed Apr 9, 2020
1 parent 57926f9 commit 1977a4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nextion/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ async def set(self, key, value, timeout=IO_TIMEOUT):
if isinstance(value, str):
out_value = '"%s"' % value
elif isinstance(value, float):
logger.warn("Float is not supported. Converting to string")
logger.warning("Float is not supported. Converting to string")
out_value = '"%s"' % str(value)
elif isinstance(value, int):
out_value = str(value)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def read(filename, parent=None):

setup(
name="nextion",
version="1.3.0",
version="1.3.1",
packages=find_packages(exclude=["tests", "tests.*"]),
python_requires=">=3.5.1, <4",
license="LGPL 3",
Expand Down

0 comments on commit 1977a4e

Please sign in to comment.