From 86605903b17191b479f56767de8eeb94f4dc7def Mon Sep 17 00:00:00 2001 From: "Mattew S." <52506836+HK-Mattew@users.noreply.github.com> Date: Tue, 29 Oct 2024 09:22:26 -0300 Subject: [PATCH] Capped uWSGI version in test dependencies to fix tests (#982) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 50458c1f..de59cd29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,7 +64,7 @@ test = [ "pytest-mock", "time-machine >= 2.13.0; python_implementation == 'CPython'", """\ - uwsgi; python_implementation == 'CPython' and platform_system == 'Linux'\ + uwsgi <= 2.0.26; python_implementation == 'CPython' and platform_system == 'Linux'\ and python_version < '3.13'\ """, ]