Skip to content

Commit 60852c1

Browse files
committed
bump libtmux to 0.7.1 and update import
1 parent 8cdba8e commit 60852c1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

requirements/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
kaptan>=0.5.7
2-
libtmux==0.6.5 # Updated from 0.6.4
2+
libtmux==0.7.1 # Updated from 0.6.5
33
click==6.7
44
colorama==0.3.9

tmuxp/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import click
1515
import kaptan
1616
from click.exceptions import FileError
17-
from libtmux.common import has_required_tmux_version, which
17+
from libtmux.common import has_minimum_version, which
1818
from libtmux.exc import TmuxCommandNotFound
1919
from libtmux.server import Server
2020

@@ -318,7 +318,7 @@ def cli(log_level):
318318
See detailed documentation and examples at:
319319
http://tmuxp.readthedocs.io/en/latest/"""
320320
try:
321-
has_required_tmux_version()
321+
has_minimum_version()
322322
except TmuxCommandNotFound:
323323
click.echo('tmux not found. tmuxp requires you install tmux first.')
324324
sys.exit()

0 commit comments

Comments
 (0)