[issue36269] post install in setup.py does not work when executed through pip

2019-03-13 Thread Saba Kauser
Change by Saba Kauser : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue36269] post install in setup.py does not work when executed through pip

2019-03-13 Thread Saba Kauser
Saba Kauser added the comment: I am able to get this to work. I just needed to invoke parent's run prior to the post install commands. if('darwin' in sys.platform): class PostInstall(install): """ Post installation - run install_name_tool on Darwin """ def run(self):

[issue36269] post install in setup.py does not work when executed through pip

2019-03-12 Thread Saba Kauser
New submission from Saba Kauser : Hello, I have a post install class that looks like this: if('darwin' in sys.platform): class PostInstall(install): """ Post installation - run install_name_tool on Darwin """ def run(self): clipath = os.getenv('IBM_DB_HOME', '@lo