Skip to content

Commit d03744d

Browse files
authored
Remove Python 3.8 (#33)
# Changes ## Drop Python 3.8 Python 3.8 reached end-of-life status on October 7th, 2024 (see [PEP 569](https://peps.python.org/pep-0569/)).
2 parents 01d7914 + 7c43b9b commit d03744d

File tree

5 files changed

+528
-367
lines changed

5 files changed

+528
-367
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ['3.8', '3.13']
12+
python-version: ['3.9', '3.13']
1313
steps:
1414
- uses: actions/checkout@v4
1515

CHANGES

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ $ pipx install --suffix=@next g --pip-args '\--pre' --force
2121

2222
<!-- Maintainers, insert changes / features for the next release here -->
2323

24+
### Breaking changes (#33)
25+
26+
- Drop Python 3.8
27+
28+
The minimum version of Python in this and future releases is Python 3.9.
29+
30+
Python 3.8 reached end-of-life status on October 7th, 2024 (see PEP 569).
31+
2432
## g 0.0.6 (2024-11-26)
2533

2634
_Maintenance only, no bug fixes, or new features_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ See donation options at <https://git-pull.com/support.html>.
5252

5353
# More information
5454

55-
- Python support: >= 3.8, pypy
55+
- Python support: >= 3.9, pypy
5656
- VCS supported: git(1), svn(1), hg(1)
5757
- Source: <https://github.com/vcs-python/g>
5858
- Docs: <https://g.git-pull.com>

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "g"
33
version = "0.0.6"
44
description = "cli command to easily sync current directory"
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
"Operating System :: MacOS :: MacOS X",
1717
"Programming Language :: Python",
1818
"Programming Language :: Python :: 3",
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)