From 28bb56744d3382dccb430fca146375fa08f64f5b Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Thu, 2 Apr 2020 12:29:05 -0300 Subject: [PATCH] Fixed double python version check for python_requires=">=3.7" --- pylib/setup.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pylib/setup.py b/pylib/setup.py index b87dc865c..904df94d3 100644 --- a/pylib/setup.py +++ b/pylib/setup.py @@ -1,17 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -import sys - import setuptools -minimum_python_version = (3, 7) - -if sys.version_info < minimum_python_version: - raise RuntimeError( - "The minimum Python interpreter version required for Anki is '%s' " - "and version '%s' was found!" % (minimum_python_version, sys.version_info) - ) - install_requires = [ "beautifulsoup4", "requests",