Просмотр исходного кода

Update tinytuya to 1.2.10

Update github workflows to use Python 3.9 in preparation for Python 3.8 support to be removed from Home Assistant in 2022.1
Jason Rumney 4 лет назад
Родитель
Сommit
d36c8d13ae

+ 1 - 1
.github/workflows/linting.yml

@@ -11,7 +11,7 @@ jobs:
       - name: Setup Python
         uses: actions/setup-python@v2
         with:
-          python-version: 3.8
+          python-version: 3.9
 
       - name: Install dependencies
         run: |

+ 1 - 1
.github/workflows/tests.yml

@@ -7,7 +7,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        python-version: [3.8]
+        python-version: [3.9]
 
     steps:
       - uses: actions/checkout@v2

+ 1 - 0
ACKNOWLEDGEMENTS.md

@@ -49,3 +49,4 @@ Further device support has been made with the assistance of users.  Please consi
  - [lucaxxaa](https://github.com/lucaxxaa) for assistance in supporting Beca BHT-002 thermostat.
  - [nickdos](https://github.com/nickdos) for assistance in supporting Stirling FS1-40DC fan.
  - [Skro11-ru](https://github.com/Skro11-ru) for assistance in supporting Moes BHT-002 variant without external temperature sensor.
+ - [novisys](https://github.com/novisys) for clarifications about BHT-6000 thermostat functionality.

+ 1 - 1
custom_components/tuya_local/manifest.json

@@ -7,6 +7,6 @@
     "issue_tracker": "https://github.com/make-all/tuya-local/issues",
     "dependencies": [],
     "codeowners": ["@make-all"],
-    "requirements": ["pycryptodome==3.11.0","tinytuya==1.2.9"],
+    "requirements": ["pycryptodome==3.11.0","tinytuya==1.2.10"],
     "config_flow": true
 }

+ 1 - 1
requirements-dev.txt

@@ -6,4 +6,4 @@ pytest
 pytest-asyncio
 pytest-cov
 pycryptodome==3.11.0
-tinytuya==1.2.9
+tinytuya==1.2.10

+ 1 - 1
requirements.txt

@@ -1,2 +1,2 @@
 pycryptodome~=3.11.0
-tinytuya~=1.2.9
+tinytuya~=1.2.10