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
9 changes: 9 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}

- name: Test runtime dependencies
run: |
uv run --no-dev -p python${{ matrix.python-version }} -- python -c '
from libtmux import common, constants, exc, formats, neo, pane, server, session, window, __version__
server = server.Server()
print("libtmux version:", __version__)
print("libtmux Server:", server)
'

- name: Install dependencies
run: uv sync --all-extras --dev

Expand Down
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ $ pip install --user --upgrade --pre libtmux

- _Future release notes will be placed here_

### Development

- CI: Check for runtime dependencies (#574)

Kudos @ppentchev for inspiration on the command
([comment](https://github.com/tmux-python/libtmux/pull/572#issuecomment-2663642923)).

## libtmux 0.44.2 (2025-02-17)

### Bug fix
Expand Down