From 24cf099bcaf7b3a1f1221489415359540b5ce692 Mon Sep 17 00:00:00 2001 From: Adam Hopkins Date: Sun, 30 Jun 2024 10:40:46 +0300 Subject: [PATCH] Fix missing setuptools. Fix ast deprecation warnings. (#2970) (#2978) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Ɓukasz Wieczorek --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 780051a0d4..36477c8bef 100644 --- a/setup.py +++ b/setup.py @@ -109,11 +109,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",