Skip to content

Commit 334fd42

Browse files
authored
py(deps) libtmux 0.44.2 -> 0.45 (#968)
# py(deps) libtmux 0.44.2 -> 0.45.0 See also: https://libtmux.git-pull.com/history.html#libtmux-0-45-0-2025-02-23
2 parents 84c3a8a + e6ac733 commit 334fd42

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

Diff for: CHANGES

+6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force
2121

2222
- _Future release notes will be placed here_
2323

24+
### Breaking changes
25+
26+
- libtmux: Bump minimum version from 0.44.2 -> 0.45.0 (#968)
27+
28+
0.45.0+ needs this release of tmuxp to stay up-to-date with test helpers.
29+
2430
### Development
2531

2632
- CI: Check CLI modules runtime dependencies (#967)

Diff for: conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import pytest
2020
from _pytest.doctest import DoctestItem
21-
from libtmux.test import namer
21+
from libtmux.test.random import namer
2222

2323
from tests.fixtures import utils as test_utils
2424
from tmuxp.workspace.finders import get_workspace_dir

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ include = [
3939
{ path = "conftest.py", format = "sdist" },
4040
]
4141
dependencies = [
42-
"libtmux~=0.44.2",
42+
"libtmux~=0.45.0",
4343
"colorama>=0.3.9",
4444
"PyYAML>=6.0"
4545
]

Diff for: tests/tests/test_helpers.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
import typing as t
66

77
import pytest
8-
from libtmux.test import get_test_session_name, temp_session
8+
from libtmux.test.random import get_test_session_name
9+
from libtmux.test.temporary import temp_session
910

1011
if t.TYPE_CHECKING:
1112
from libtmux.server import Server

Diff for: tests/workspace/test_builder.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
from libtmux.exc import LibTmuxException
1717
from libtmux.pane import Pane
1818
from libtmux.session import Session
19-
from libtmux.test import retry_until, temp_session
19+
from libtmux.test.retry import retry_until
20+
from libtmux.test.temporary import temp_session
2021
from libtmux.window import Window
2122

2223
from tests.constants import EXAMPLE_PATH, FIXTURE_PATH

Diff for: uv.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)