Skip to content

Commit 701643c

Browse files
author
Andrea Bedini
committed
Remove setuptools bootstrapping from setup.py
Rationale: the distributed version of ez_setup is outdated and the python packaging world is a moving target. Also recent versions of python ship with setuptools and pip.
1 parent 39451f6 commit 701643c

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

setup.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,7 @@
2323
except ImportError:
2424
_CYTHON_INSTALLED = False
2525

26-
# try bootstrapping setuptools if it doesn't exist
2726
try:
28-
import pkg_resources
29-
try:
30-
pkg_resources.require("setuptools>=0.6c5")
31-
except pkg_resources.VersionConflict:
32-
from ez_setup import use_setuptools
33-
use_setuptools(version="0.6c5")
3427
from setuptools import setup, Command
3528
_have_setuptools = True
3629
except ImportError:

0 commit comments

Comments
 (0)