From 2353ea9bd2aadea66e7b31707ed1f9a971f2d4a3 Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Wed, 27 May 2015 14:09:17 -0400 Subject: [PATCH] setup.py: Fix custom install class to not force an egg install --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0967216..ff82e7c 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def run(self): class CustomInstall(install): def run(self): self.run_command('build_ext') - self.do_egg_install() + install.run(self) class _M2CryptoBuildExt(build_ext.build_ext): '''Specialization of build_ext to enable swig_opts to inherit any