From e685f025c5ebd4fbc84cc666fcca6ecda5dac8e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Wieczorek?= Date: Sun, 30 Jun 2024 08:11:14 +0200 Subject: [PATCH] Fix missing setuptools. Fix ast deprecation warnings. (#2970) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bfa767b547..055abc2919 100644 --- a/setup.py +++ b/setup.py @@ -113,11 +113,12 @@ def str_to_bool(val: str) -> bool: "html5tagger>=1.2.1", "tracerite>=1.0.0", "typing-extensions>=4.4.0", + "setuptools>=70.1.0", ] tests_require = [ "sanic-testing>=23.6.0", - "pytest==7.1.*", + "pytest>=8.2.2", "coverage", "beautifulsoup4", "pytest-sanic",