summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Beaupré <anarcat@koumbit.org>2015-10-08 10:37:19 -0400
committerAntoine Beaupré <anarcat@koumbit.org>2015-10-08 10:37:56 -0400
commit6c5a7733a222c0da1d0950593ba23bdc9b2579f3 (patch)
tree99f308476cf2c7927e30d80003c9290aafff9309
parent86487d192a9a5ab7ff4eedb92d793485b4c30268 (diff)
force build-ext build
it seems that what worked in the debug branch is not working in the main branch, even though the commit IDs are exactly the same. the RTD environment doesn't seem really reliable... besides, we want to build extensions before the rest, so should run it first, in order to have msgpack loaded.
-rw-r--r--setup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 7376c56e2..8f31a927f 100644
--- a/setup.py
+++ b/setup.py
@@ -220,6 +220,7 @@ class build_py_custom(build_py):
def run(self):
super().run()
self.announce('calling custom build steps', level=log.INFO)
+ self.run_command('build_ext')
self.run_command('build_api')
self.run_command('build_usage')