Skip to content

py(deps) libtmux 0.44.2 -> 0.45.0 #968

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

Merged
merged 3 commits into from
Feb 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force

- _Future release notes will be placed here_

### Breaking changes

- libtmux: Bump minimum version from 0.44.2 -> 0.45.0 (#968)

0.45.0+ needs this release of tmuxp to stay up-to-date with test helpers.

### Development

- CI: Check CLI modules runtime dependencies (#967)
Expand Down
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import pytest
from _pytest.doctest import DoctestItem
from libtmux.test import namer
from libtmux.test.random import namer

from tests.fixtures import utils as test_utils
from tmuxp.workspace.finders import get_workspace_dir
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ include = [
{ path = "conftest.py", format = "sdist" },
]
dependencies = [
"libtmux~=0.44.2",
"libtmux~=0.45.0",
"colorama>=0.3.9",
"PyYAML>=6.0"
]
Expand Down
3 changes: 2 additions & 1 deletion tests/tests/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
import typing as t

import pytest
from libtmux.test import get_test_session_name, temp_session
from libtmux.test.random import get_test_session_name
from libtmux.test.temporary import temp_session

if t.TYPE_CHECKING:
from libtmux.server import Server
Expand Down
3 changes: 2 additions & 1 deletion tests/workspace/test_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
from libtmux.exc import LibTmuxException
from libtmux.pane import Pane
from libtmux.session import Session
from libtmux.test import retry_until, temp_session
from libtmux.test.retry import retry_until
from libtmux.test.temporary import temp_session
from libtmux.window import Window

from tests.constants import EXAMPLE_PATH, FIXTURE_PATH
Expand Down
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.