Hi,
I'm using sourcetree and like it alot, however I now have to use a precomit hook from a python lib like
[hooks] precommit=python:myhookslib.hghooks.precommit
This worked on my other computer, now however this lib is installed in a virtualenv. I've choosen the mercurial lib installed in this virtualenv, but it doesn't seems like the default python environment is started. Is there any way for me to specify what python environment sourcetree should use, like a global variable or even better if I could specify it for each repository.
You can alter the script in
~/Library/Application\ Support/SourceTree/userhg_local/hg_local
In that file you alter the shebang from
#!/usr/bin/env python
which in general is the correct way to do it, to
#!/path/to/my/virtualenv/bin/python
Ok, but the reason for having a virtualenv is to minimize the changes I do to the system. The problem is solved for me, but it would be nice to be able to specify wich python binary that should be used, that wold allow for use with virtualenvs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
SourceTree will just use whatever is your default system Python, so if you made the virtualenv version the one that's used by defualt that might work. Unfrotunately to set this across OS X apps rather than the terminal you have to edit /etc/paths rather than just set PATH.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found that I could alter the script in ~/Library/Application Support/SourceTree/userhg_local/hg_local to start with
#!/path/to/my/virtualenv/bin/python
Although this resolvs my issue for now, I don't know what will happen after an update. Is there a better way to do it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.