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
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
tmux-version: [ '2.6', '2.7', '2.8', '3.0a', '3.1b', '3.2a', 'master' ]
# balance ci coverage across supported python/tmux versions with CI speed
include:
- python-version: '3.7'
- python-version: '3.9'
tmux-version: '2.6'
- python-version: '3.7'
- python-version: '3.9'
tmux-version: 'master'
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10.1 3.9.9 3.8.11 3.7.12
3.10.1 3.9.9
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
poetry 1.1.12
python 3.10.1 3.9.9 3.8.11 3.7.12
python 3.10.1 3.9.9
14 changes: 7 additions & 7 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force

- _Insert changes/features/fixes for next release here_

### Compatibility

- Python 3.7 and 3.8 support has been removed

Bug fixes and security updates will go to the
[`v1.11.x`](https://github.com/tmux-python/tmuxp/tree/v1.11.x) branch

## tmuxp 1.11.1 (2022-05-02)

### Bug fix
Expand Down Expand Up @@ -58,13 +65,6 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force

## tmuxp 1.10.0 (2022-03-19)

### Compatibility

- Final python 3.7 and 3.8 release

Bug fixes and security updates will go to
[`v1.10.x`](https://github.com/tmux-python/tmuxp/tree/v1.10.x)

### What's new

- {issue}`747`: Skip execution via `enter: false`
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Window(@3 1:your_window, Session($1 your_project))
Pane(%6 Window(@3 1:your_window, Session($1 your_project))
```

Python 3.7+ supports [PEP
Supports [PEP
553](https://www.python.org/dev/peps/pep-0553/) `breakpoint()`
(including `PYTHONBREAKPOINT`). Also supports direct commands via `-c`:

Expand Down Expand Up @@ -250,6 +250,12 @@ See the [Quickstart](http://tmuxp.git-pull.com/quickstart.html).
Want to learn more about tmux itself? [Read The Tao of Tmux
online](http://tmuxp.git-pull.com/about_tmux.html).

# Python support

Maintenance-only / security and bug fixes:

- Python 3.7 and 3.8: [`v1.11.x`](https://github.com/tmux-python/libtmux/tree/v0.11.x)

# Donations

Your donations fund development of new features, testing and support.
Expand All @@ -262,7 +268,7 @@ See donation options at <https://git-pull.com/support.html>.
# Project details

- tmux support: 1.8, 1.9a, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
- python support: >= 3.7, pypy, pypy3
- python support: >= 3.9, pypy, pypy3
- Source: <https://github.com/tmux-python/tmuxp>
- Docs: <https://tmuxp.git-pull.com>
- API: <https://tmuxp.git-pull.com/api.html>
Expand Down
95 changes: 27 additions & 68 deletions poetry.lock

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

4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
Expand Down Expand Up @@ -45,7 +43,7 @@ Changes = "https://github.com/tmux-python/tmuxp/blob/master/CHANGES"
tmuxp = 'tmuxp:cli.cli'

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.9"
click = "~8"
kaptan = ">=0.5.10"
libtmux = "~0.11.0"
Expand Down