From cc1d32fa5162bd702f826f4991398161c17bc024 Mon Sep 17 00:00:00 2001 From: Eric Spitler <1396382+eric-spitler@users.noreply.github.com> Date: Thu, 24 Mar 2022 07:55:36 -0600 Subject: [PATCH] Allow HTTPX 0.22 (#35) --- sanic_testing/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sanic_testing/__init__.py b/sanic_testing/__init__.py index 5e3d841..a59acf1 100644 --- a/sanic_testing/__init__.py +++ b/sanic_testing/__init__.py @@ -1,4 +1,4 @@ from sanic_testing.manager import TestManager -__version__ = "0.8.2" +__version__ = "0.8.3" __all__ = ("TestManager",) diff --git a/setup.py b/setup.py index d254022..aaaf6e6 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ def open_local(paths, mode="r", encoding="utf8"): ], } requirements = [ - "httpx>=0.18,<0.22" + "httpx>=0.18,<0.23" ] tests_require = [