From 691150190946b99071cba1cced01502524796612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Karri=C3=A9?= Date: Sun, 26 Feb 2023 11:51:10 +0100 Subject: [PATCH] fixed dependencies --- build.md | 10 +++++----- requirements.txt | 2 +- setup.py | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build.md b/build.md index 48ca583..f1c1127 100644 --- a/build.md +++ b/build.md @@ -20,13 +20,13 @@ cd ~/workspace/src/oekofen-api ``` ### Push git changes -- Neue Version in der setup.py eintragen 0.0.21 +- Neue Version in der setup.py eintragen 0.0.22 - Mit git changes pushen!! ### github Release erstellen - https://github.com/ckarrie/oekofen-api/releases/new -- Tag (create new): v0.0.21 -- Title: v0.0.21 +- Tag (create new): v0.0.22 +- Title: v0.0.22 - Button "Publish Release" ### Anpassen in setup.py @@ -34,7 +34,7 @@ cd ~/workspace/src/oekofen-api nano setup.py ``` ```python -VERSION = "0.0.21" +VERSION = "0.0.22" ``` @@ -60,7 +60,7 @@ twine upload dist/* Lokal updaten ``` -pip install oekofen-api==0.0.21 +pip install oekofen-api==0.0.22 ``` ## Update homeassistant-oekofen diff --git a/requirements.txt b/requirements.txt index 3335457..34e1f46 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ voluptuous>=0.13.1 -yarl~=1.8.2 \ No newline at end of file +yarl>=1.8.1 \ No newline at end of file diff --git a/setup.py b/setup.py index dfbffd8..66e2c43 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ with open("README.md", "r") as f: long_description = f.read() -VERSION = "0.0.21" +VERSION = "0.0.22" setup( name="oekofen_api", @@ -18,7 +18,7 @@ packages=find_packages(), install_requires=[ 'voluptuous>=0.13.1', - 'yarl~=1.8.2' + 'yarl>=1.8.1' ], classifiers=[ "Programming Language :: Python :: 3",