Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
python-version: ['3.14']
tmux-version: ['3.2a', '3.3a', '3.4', '3.5', '3.6', 'master']
tmux-version: ['3.2a', '3.3a', '3.4', '3.5', '3.6', '3.7', 'master']
steps:
- uses: actions/checkout@v6

Expand Down
10 changes: 10 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@ $ tmuxp@next load yoursession
_Notes on the upcoming release will go here._
<!-- END PLACEHOLDER - ADD NEW CHANGELOG ENTRIES BELOW THIS LINE -->

### Dependencies

#### Minimum `libtmux~=0.59.0` (was `~=0.58.1`) (#1057)

### What's new

#### tmux 3.7 support (#1057)

tmuxp now supports tmux 3.7, which joins 3.2a through 3.6 in the tested version range. There are no behavior changes for users on earlier tmux releases.

## tmuxp 1.70.1 (2026-06-16)

tmuxp 1.70.1 bumps libtmux to 0.58.1, fixing a pytest 9.1 plugin import failure that broke test collection for projects using tmuxp's or libtmux's fixtures.
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.58.1",
"libtmux~=0.59.0",
"PyYAML>=6.0"
]

Expand Down
8 changes: 7 additions & 1 deletion tests/workspace/test_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,13 @@ def test_issue_800_default_size_many_windows(
assert callable(builder.session.kill)
builder.session.kill()

with pytest.raises(libtmux.exc.LibTmuxException, match="no space for new pane"):
# tmux 3.7 reworded this error from "no space for new pane" to
# "size or position no space for a new pane"; the optional "a "
# matches both wordings.
with pytest.raises(
libtmux.exc.LibTmuxException,
match=r"no space for (a )?new pane",
):
builder.build()
return

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.