Skip to content

Commit a1f66e7

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 c48dbb6 commit a1f66e7

File tree

4 files changed

+518
-365
lines changed

4 files changed

+518
-365
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
tmux-version: ['2.6', '2.7', '2.8', '3.0a', '3.1b', '3.2a', '3.3a', '3.4', '3.5', 'master']
1515
# balance ci coverage across supported python/tmux versions with CI speed
1616
include:
17-
- python-version: '3.8'
17+
- python-version: '3.9'
1818
tmux-version: '2.6'
19-
- python-version: '3.8'
19+
- python-version: '3.9'
2020
tmux-version: 'master'
2121
steps:
2222
- uses: actions/checkout@v4

README.md

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

270270
- tmux support: 1.8+
271-
- python support: >= 3.8, pypy, pypy3
271+
- python support: >= 3.9, pypy, pypy3
272272
- Source: <https://github.com/tmux-python/tmuxp>
273273
- Docs: <https://tmuxp.git-pull.com>
274274
- API: <https://tmuxp.git-pull.com/api.html>

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "tmuxp"
33
version = "1.48.0"
44
description = "Session manager for tmux, which allows users to save and load tmux sessions through simple configuration files."
5-
requires-python = ">=3.8,<4.0"
5+
requires-python = ">=3.9,<4.0"
66
authors = [
77
{name = "Tony Narlock", email = "[email protected]"}
88
]
@@ -15,7 +15,6 @@ classifiers = [
1515
"Environment :: Web Environment",
1616
"Intended Audience :: Developers",
1717
"Programming Language :: Python",
18-
"Programming Language :: Python :: 3.8",
1918
"Programming Language :: Python :: 3.9",
2019
"Programming Language :: Python :: 3.10",
2120
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)