Skip to content

Commit

Permalink
don't re-compile protobuf
Browse files Browse the repository at this point in the history
  • Loading branch information
lanpa committed Jun 18, 2023
1 parent f4ac82d commit 9ec649f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ def compileProtoBuf():
class PostDevelopCommand(develop):
"""Post-installation for development mode."""
def run(self):
compileProtoBuf()
develop.run(self)

class PostInstallCommand(install):
"""Post-installation for installation mode."""
def run(self):
compileProtoBuf()
for r in requirements:
subprocess.run(f"pip install '{r}'", shell=True)
install.run(self)
Expand Down

0 comments on commit 9ec649f

Please sign in to comment.