From 9019ae493fecf69b7d940bb188491abc6adc8a31 Mon Sep 17 00:00:00 2001 From: Ruslan Sayfutdinov Date: Mon, 27 Jun 2022 10:50:07 +0100 Subject: [PATCH] Relax requirements for deps which are pinned in HA (#263) --- poetry.lock | 2 +- pyproject.toml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/poetry.lock b/poetry.lock index f30e540..a3fe90e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -936,7 +936,7 @@ ifaddr = ">=0.1.7" [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "163970a21cefd3fdfee913a69700e8093d10f4bf328ae641781dcf20b58b4d62" +content-hash = "ce1ab1ac3b0858afcb50e336a253c395acbdab053daec187b86489ba9399f3ea" [metadata.files] appnope = [ diff --git a/pyproject.toml b/pyproject.toml index e826472..a897fdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,14 +25,14 @@ repository = "https://github.com/leikoilja/glocaltokens" [tool.poetry.dependencies] python = "^3.8" gpsoauth = "^1.0.1" - -# Note, we want to keep versions similar to Home Assistant -# https://github.com/home-assistant/core/blob/949922ef2cb7a7c6e4a83cb91856c70728acd806/homeassistant/package_constraints.txt#L54 -grpcio = "^1.46.1" -protobuf = "3.19.4" -requests = "^2.28.0" simplejson = "^3.17.2" -zeroconf = "^0.38.7" +# Version used for generating stubs. +protobuf = "3.19.4" +# Note, we want to keep versions of grpcio, requests and zeroconf similar to Home Assistant +# https://github.com/home-assistant/core/blob/2022.6.0/homeassistant/package_constraints.txt +grpcio = "^1.46.1" +requests = "^2.27.1" +zeroconf = "^0.38.6" [tool.poetry.dev-dependencies] black = "^22.3"