From 93f9c81de2e2f3746251381a204bad7cd03e94d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20K=C3=B6tter?= Date: Thu, 31 Oct 2024 07:36:30 +0100 Subject: [PATCH] v3x/glue - fix httpx_auth >= 0.21.0 --- aiopenapi3/v30/glue.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aiopenapi3/v30/glue.py b/aiopenapi3/v30/glue.py index 9e93a2be..e181740b 100644 --- a/aiopenapi3/v30/glue.py +++ b/aiopenapi3/v30/glue.py @@ -8,7 +8,7 @@ try: import httpx_auth - from httpx_auth.authentication import SupportMultiAuth + from httpx_auth import SupportMultiAuth import inspect except ImportError: httpx_auth = None diff --git a/pyproject.toml b/pyproject.toml index 62e650ca..97a8732d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ Repository = "https://github.com/commonism/aiopenapi3" [project.optional-dependencies] auth = [ - "httpx-auth", + "httpx-auth>=0.21.0", ] socks = [ "httpx-socks",