Skip to content

Commit

Permalink
Disabled triggers for two steps
Browse files Browse the repository at this point in the history
  • Loading branch information
sundarnagarajan committed Mar 16, 2016
1 parent 68e8ed2 commit e6b229c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setupext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,14 @@
'build_ext',
'build_py',
'build_scripts',
'install',
'install_data',
'install_headers',
'install_lib',
'install_scripts',
'install_headers',
# Following do not work
# 'install',
# 'install_scripts',
]
trace_triggers = False
trace_triggers = True

# setup config, so that user only needs to add cmdlist and optionally
# set show_output, show_err, ignore_err for different triggers
Expand Down Expand Up @@ -280,7 +281,7 @@ def run(self):

class CustomInstall(install):
def run(self):
run_triggers('install', 'pre', args=(self,))
# run_triggers('install', 'pre', args=(self,))
install.run(self)
run_triggers('install', 'post', args=(self,))

Expand Down

0 comments on commit e6b229c

Please sign in to comment.