Skip to content

Commit 7ee9ff2

Browse files
committed
Drop Python 3.8
Python 3.8 reached end-of-life on October 7th, 2024 (see devguide.python.org, Status of Python Versions) See also: https://devguide.python.org/versions/#unsupported-versions
1 parent 5254fa7 commit 7ee9ff2

File tree

4 files changed

+438
-280
lines changed

4 files changed

+438
-280
lines changed

Diff for: .github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.13']
13+
python-version: ['3.9', '3.13']
1414
tmux-version: ['2.6', '2.7', '2.8', '3.0a', '3.1b', '3.2a', '3.3a', '3.4', '3.5', 'master']
1515
steps:
1616
- uses: actions/checkout@v4

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ See donation options at <https://git-pull.com/support.html>.
265265
# Project details
266266

267267
- tmux support: 1.8+
268-
- python support: >= 3.8, pypy, pypy3
268+
- python support: >= 3.9, pypy, pypy3
269269
- Source: <https://github.com/tmux-python/libtmux>
270270
- Docs: <https://libtmux.git-pull.com>
271271
- API: <https://libtmux.git-pull.com/api.html>

Diff for: pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libtmux"
33
version = "0.38.1"
44
description = "Typed library that provides an ORM wrapper for tmux, a terminal multiplexer."
5-
requires-python = ">=3.8,<4.0"
5+
requires-python = ">=3.9,<4.0"
66
authors = [
77
{name = "Tony Narlock", email = "[email protected]"}
88
]
@@ -16,7 +16,6 @@ classifiers = [
1616
"Framework :: Pytest",
1717
"Intended Audience :: Developers",
1818
"Programming Language :: Python",
19-
"Programming Language :: Python :: 3.8",
2019
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)