diff --git a/poetry.lock b/poetry.lock index 33a1cd2..728b968 100644 --- a/poetry.lock +++ b/poetry.lock @@ -81,11 +81,11 @@ tests-no-zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy [[package]] name = "backoff" -version = "1.11.1" +version = "2.2.1" description = "Function decoration for backoff and retry" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.7,<4.0" [[package]] name = "black" @@ -514,7 +514,7 @@ testing = ["flake8 (<5)", "func-timeout", "jaraco.functools", "jaraco.itertools" [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "5193a00d2cb5a439f7c70848a6c89c534a865239275ed83a443c443dd9cef96b" +content-hash = "43a4e0d5adbd8ca4569b298c7fed944f18f717dfb180f321076f0facec05a301" [metadata.files] aiohttp = [ @@ -627,8 +627,8 @@ attrs = [ {file = "attrs-22.1.0.tar.gz", hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"}, ] backoff = [ - {file = "backoff-1.11.1-py2.py3-none-any.whl", hash = "sha256:61928f8fa48d52e4faa81875eecf308eccfb1016b018bb6bd21e05b5d90a96c5"}, - {file = "backoff-1.11.1.tar.gz", hash = "sha256:ccb962a2378418c667b3c979b504fdeb7d9e0d29c0579e3b13b86467177728cb"}, + {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, + {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, ] black = [ {file = "black-22.10.0-1fixedarch-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:5cc42ca67989e9c3cf859e84c2bf014f6633db63d1cbdf8fdb666dcd9e77e3fa"}, diff --git a/pyproject.toml b/pyproject.toml index 6eb9d0e..0cb169d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ version = "0" [tool.poetry.dependencies] python = "^3.8" aiohttp = "^3.8" -backoff = "^1.10.0" +backoff = "<3" [tool.poetry.dev-dependencies] aresponses = "^2.1.6" @@ -35,8 +35,6 @@ pytest = "^7.2.0" pytest-asyncio = "^0.15.1" pytest-cov = "^4.0.0" - - [tool.black] line-length = 100 target-version = ['py38']