From fe8925b91eb294455da1ffb5a17f17039d1f37a2 Mon Sep 17 00:00:00 2001 From: Chiara Rasi Date: Thu, 1 Feb 2024 08:02:27 +0100 Subject: [PATCH] Downgrade anyio lib --- poetry.lock | 18 ++++++++---------- pyproject.toml | 1 + 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/poetry.lock b/poetry.lock index 59f88df..cc71c29 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2,25 +2,23 @@ [[package]] name = "anyio" -version = "4.2.0" +version = "3.6.1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false -python-versions = ">=3.8" +python-versions = ">=3.6.2" files = [ - {file = "anyio-4.2.0-py3-none-any.whl", hash = "sha256:745843b39e829e108e518c489b31dc757de7d2131d53fac32bd8df268227bfee"}, - {file = "anyio-4.2.0.tar.gz", hash = "sha256:e1875bb4b4e2de1669f4bc7869b6d3f54231cdced71605e6e64c9be77e3be50f"}, + {file = "anyio-3.6.1-py3-none-any.whl", hash = "sha256:cb29b9c70620506a9a8f87a309591713446953302d7d995344d0d7c6c0c9a7be"}, + {file = "anyio-3.6.1.tar.gz", hash = "sha256:413adf95f93886e442aea925f3ee43baa5a765a64a0f52c6081894f9992fdd0b"}, ] [package.dependencies] -exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} idna = ">=2.8" sniffio = ">=1.1" -typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] -doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] -trio = ["trio (>=0.23)"] +doc = ["packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["contextlib2", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (<0.15)", "uvloop (>=0.15)"] +trio = ["trio (>=0.16)"] [[package]] name = "attrs" @@ -908,4 +906,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "b6e3362a8e2254decbc6c7c56c340ed32a69901b57dc24ad1b2fdc220afca855" +content-hash = "065789b44cf7f2f552812973579825e0bca7015946549f471a419aa4549c3eac" diff --git a/pyproject.toml b/pyproject.toml index 5af4709..fca06d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ python-multipart = "^0.0.5" jsonschema = "^4.6.1" responses = "^0.21.0" importlib-resources = "^6.1.1" +anyio = "3.6.1" [tool.poetry.dev-dependencies] pytest = "^7.1.2"