Skip to content

Commit 94bf705

Browse files
committed
v1.6.4
1 parent 2610ee8 commit 94bf705

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* IPv6 Support - Use socket.getaddrinfo() for AF_INET & AF_INET6
66
* Add function to send multiple DPS index updates with one call
77

8-
## v1.6.3 - IRRemoteControlDevice and Read Improvements
8+
## v1.6.4 - IRRemoteControlDevice and Read Improvements
99

10-
* PyPI 1.6.3
10+
* PyPI 1.6.4
1111
* Separates read retries from send retries by @uzlonewolf #158
1212
* IRRemoteControlDevice - New community contributed device module for IR Remote Control devices by @ClusterM in https://github.com/jasonacox/tinytuya/pull/160 - See example: [examples/IRRemoteControlDevice-example.py](https://github.com/jasonacox/tinytuya/blob/master/examples/Contrib/IRRemoteControlDevice-example.py)
1313

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",
1616
url='https://github.com/jasonacox/tinytuya',
17-
packages=setuptools.find_packages(),
17+
packages=setuptools.find_packages(exclude=("sandbox",)),
1818
install_requires=[
1919
'pycryptodome', # Encryption - AES can also be provided via PyCrypto or pyaes
2020
'requests', # Used for Setup Wizard - Tuya IoT Platform calls

tinytuya/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
# Colorama terminal color capability for all platforms
7979
init()
8080

81-
version_tuple = (1, 6, 3)
81+
version_tuple = (1, 6, 4)
8282
version = __version__ = "%d.%d.%d" % version_tuple
8383
__author__ = "jasonacox"
8484

0 commit comments

Comments
 (0)