From 564cd6df0937a11b4a1dd85e1cfa294671e83c68 Mon Sep 17 00:00:00 2001 From: Nathan Spencer Date: Thu, 9 Mar 2023 18:02:21 -0700 Subject: [PATCH] Add protobuf missing dependency --- poetry.lock | 4 ++-- pyproject.toml | 3 ++- tests/test_version.py | 2 +- vivintpy/__init__.py | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/poetry.lock b/poetry.lock index 8cfa97c..4000faa 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1106,7 +1106,7 @@ testing = ["pytest", "pytest-benchmark"] name = "protobuf" version = "4.22.1" description = "" -category = "dev" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1742,4 +1742,4 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more [metadata] lock-version = "2.0" python-versions = "^3.7.2" -content-hash = "c6d956271f7f391f96bc7232c1812ac38c9a1c6e3156080d68e467fe9b97d49b" +content-hash = "0b72c1ea937a127f03cd78302e18053b82fc3ba70eb82e0d797ba20a2e97f845" diff --git a/pyproject.toml b/pyproject.toml index 07fb929..f7eeb7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vivintpy" -version = "2023.3.1" +version = "2023.3.2" description = "Python library for interacting with a Vivint security and smart home system." authors = ["Nathan Spencer "] license = "MIT" @@ -15,6 +15,7 @@ aiohttp = "^3.8.4" certifi = "^2022.9.24" pubnub = "^7.0" grpcio = "1.51.1" +protobuf = "^4.22.1" [tool.poetry.dev-dependencies] tox = "^3.28.0" diff --git a/tests/test_version.py b/tests/test_version.py index d165c3e..fdfd877 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -4,4 +4,4 @@ def test_version() -> None: """Test version.""" - assert __version__ == "2023.3.1" + assert __version__ == "2023.3.2" diff --git a/vivintpy/__init__.py b/vivintpy/__init__.py index 011e91e..4c16f01 100644 --- a/vivintpy/__init__.py +++ b/vivintpy/__init__.py @@ -1,2 +1,2 @@ """Provide a package for vivintpy.""" -__version__ = "2023.3.1" +__version__ = "2023.3.2"