New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version check breaks on tmux dev #199
Comments
@fourjay I'm open to a fix for that. |
I just ran into this as well. I installed the latest tmux on OSX using
If I get some free time soon, I'll send a PR to libtmux. |
Can you do a |
That doesn't fix it. The problem is here: https://github.com/tony/libtmux/blob/2f8a925d1b4a83e21dee9debdaf725dc9984304b/libtmux/common.py#L415-L422 The |
When the latest tmux is installed, `tmux -V` returns 'tmux master', which wasn't properly handled by has_required_tmux_version(). Closes tmux-python/tmuxp#199
I thought we got rid of the StrictVersion also.
Feel free to give a PR a go. I’ll update the dependency and publish to pypi.
|
When the latest tmux is installed, `tmux -V` returns 'tmux master', which wasn't properly handled by has_required_tmux_version(). Closes tmux-python/tmuxp#199
I (possibly foolishly) build tmux from source.
Late updates of tmuxp do a version check
has_required_tmux_version()
that throws an exception.I'm pretty sure this because with the source
tmux -V
in my environment returnstmux master
with no version number.I can work around this by commenting out the call to
has_required_tmux_version()
and tmuxp runs without issue.Is there potentially a way to disable the version check?
The text was updated successfully, but these errors were encountered: