From 665329836e63226df383049607812e610fa8a4aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20K=C5=82oczko?= Date: Tue, 18 Jun 2024 19:11:04 +0000 Subject: [PATCH] remove cede duplicated in pyprojest.tomil decalaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "requires-python = '>=3.8.0'" in pyproject.toml is enough. Signed-off-by: Tomasz Kłoczko --- setup.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/setup.py b/setup.py index 575a9d2..1377ef1 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,5 @@ import sys -vi = sys.version_info -if vi < (3, 8): - raise RuntimeError('uvloop requires Python 3.8 or greater') - if sys.platform in ('win32', 'cygwin', 'cli'): raise RuntimeError('uvloop does not support Windows at the moment')