Skip to content

Commit 4c1e2b7

Browse files
committed
Drop distutils compatibility imports
1 parent 66aa090 commit 4c1e2b7

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,8 @@
77

88

99
#-----------------------------------------------------------------------------
10-
try:
11-
from setuptools import setup, Extension, Command
12-
from setuptools.command import build_ext as _build_ext
13-
except ImportError:
14-
from distutils.core import setup, Extension, Command
15-
from distutils.command import build_ext as _build_ext
10+
from setuptools import setup, Extension, Command
11+
from setuptools.command import build_ext as _build_ext
1612

1713

1814
#-----------------------------------------------------------------------------

0 commit comments

Comments
 (0)