From 02e61fa11583f638a66bef65512b1a250080b655 Mon Sep 17 00:00:00 2001 From: Michael Graeb Date: Fri, 4 Oct 2019 14:32:31 -0700 Subject: [PATCH] fix python 2 (#81) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 073d76884..c0c5cf88f 100644 --- a/setup.py +++ b/setup.py @@ -192,7 +192,7 @@ def run(self): self.library_dirs.append(os.path.join(DEP_INSTALL_PATH, lib_dir)) # continue with normal build_ext.run() - super().run() + setuptools.command.build_ext.build_ext.run(self) # python2 breaks if we use super().run() def awscrt_ext():