From f607c6757f014d397493e92e83fcf1e103c4020a Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 10 Jun 2020 12:24:13 +0200 Subject: [PATCH] Trying to get web_build to run in install - see https://stackoverflow.com/questions/20194565/running-custom-setuptools-build-during-install --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 79eda771..3190d5e9 100755 --- a/setup.py +++ b/setup.py @@ -61,9 +61,9 @@ class WebBuildCommand(distutils.cmd.Command): class InstallCommand(install): - def run(self): + def do_egg_install(self): self.run_command('web_build') - install.run(self) + install.do_egg_install(self) def path(fname=''):