Skip to content

Commit 9a627f6

Browse files
authored
build(deps): libtmux v0.12 -> v0.14 (#790)
- Strict type annotations - `Pane.send_keys()` no longer `suppress_history` by default
2 parents 380c91d + 8700640 commit 9a627f6

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

poetry.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ tmuxp = 'tmuxp:cli.cli'
4848
python = "^3.7"
4949
click = "~8"
5050
kaptan = ">=0.5.10"
51-
libtmux = "~0.12.0"
51+
libtmux = "~0.14.0"
5252
colorama = ">=0.3.9"
5353

5454
[tool.poetry.dev-dependencies]

tests/test_workspacebuilder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,8 @@ def test_environment_variables(session):
345345
builder = WorkspaceBuilder(sconf=sconfig)
346346
builder.build(session)
347347

348-
assert session.show_environment("FOO") == "BAR"
349-
assert session.show_environment("PATH") == "/tmp"
348+
assert session.getenv("FOO") == "BAR"
349+
assert session.getenv("PATH") == "/tmp"
350350

351351

352352
def test_automatic_rename_option(session):

0 commit comments

Comments
 (0)