Skip to content

Commit

Permalink
setup.py: remove setuptools version check
Browse files Browse the repository at this point in the history
It doesn't handle things like "1.2.3post" too old setuptools is really rare
now, so just drop the check
  • Loading branch information
lazka committed Dec 25, 2020
1 parent dad2b74 commit 84419a1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,9 +405,6 @@ def run(self):
def check_setuptools_for_dist():
if "setuptools" not in sys.modules:
raise Exception("setuptools not available")
version = tuple(map(int, sys.modules["setuptools"].__version__.split(".")))
if version < (24, 2, 0):
raise Exception("setuptools too old")


du_sdist = get_command_class("sdist")
Expand Down

0 comments on commit 84419a1

Please sign in to comment.