spack/var/spack/repos/builtin/packages/py-mysql-connector-python/single-version.patch
Adam J. Stewart 2264e30d99
Update URL parsing regexes and tests (#13411)
* Update URL parsing regexes and tests

* Get rid of no longer used README

* Merge py-udunits and py-cf-units

* netcdf -> netcdf-c

* setup_environment -> setup_*_environment

* Fix doc tests

* Few last minute fixes

* Simplify prefix removal copypasta
2019-10-28 20:27:54 -05:00

23 lines
863 B
Diff

diff --git a/lib/cpy_distutils.py b/lib/cpy_distutils.py
index a9132e5..3cffee6 100644
--- a/lib/cpy_distutils.py
+++ b/lib/cpy_distutils.py
@@ -29,9 +29,14 @@
"""Implements the DistUtils command 'build_ext'
"""
-from distutils.command.build_ext import build_ext
-from distutils.command.install import install
-from distutils.command.install_lib import install_lib
+try:
+ from setuptools.command.build_ext import build_ext
+ from setuptools.command.install import install
+ from setuptools.command.install_lib import install_lib
+except ImportError:
+ from distutils.command.build_ext import build_ext
+ from distutils.command.install import install
+ from distutils.command.install_lib import install_lib
from distutils.errors import DistutilsExecError
from distutils.util import get_platform
from distutils.version import LooseVersion