Skip to content

Commit

Permalink
Merge pull request #1276 from gnocchixyz/mergify/bp/stable/4.4/pr-1275
Browse files Browse the repository at this point in the history
Always call install_scripts on pip install (backport #1275)
  • Loading branch information
tobias-urdin authored Sep 30, 2022
2 parents 33a8100 + 68f4b4c commit a65065e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@

class local_install_scripts(install_scripts.install_scripts):
def run(self):
# NOTE(tobias-urdin): Always install_scripts so that we get
# gnocchi-api otherwise it's left out when installing with pip.
self.no_ep = False
install_scripts.install_scripts.run(self)
# NOTE(sileht): Build wheel embed custom script as data, and put sheban
# in script of the building machine. To workaround that build_scripts
Expand Down

0 comments on commit a65065e

Please sign in to comment.