From dc655f64d634c6c0a2d8879c539b2b3212761ab3 Mon Sep 17 00:00:00 2001 From: JP-Ellis Date: Mon, 30 Oct 2023 14:45:12 +1100 Subject: [PATCH] fix(deps): add yarl dependency The `yarl` dependency was initially only used in the test suite, but a previous commit made use of yarl's `URL` class and forgot to promote `yarl` to a main dependency of Pact Python. Signed-off-by: JP-Ellis --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f2af5a0ba..6a97c39fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,6 +42,7 @@ dependencies = [ "six ~= 1.0", "typing-extensions ~= 4.0 ; python_version < '3.10'", "uvicorn ~= 0.0", + "yarl ~= 1.0", ] [project.urls] @@ -72,7 +73,6 @@ test = [ "pytest-asyncio ~= 0.0", "pytest-cov ~= 4.0", "testcontainers ~= 3.0", - "yarl ~= 1.0", ] dev = [ "pact-python[types]",