Skip to content

Commit 5b149b6

Browse files
authored
deprecate: Python 3.8 support removal (#158)
* deprecate: Python 3.8 support removal * deprecate: Python 3.8 support removal
1 parent 72c3238 commit 5b149b6

File tree

4 files changed

+6
-55
lines changed

4 files changed

+6
-55
lines changed

.github/workflows/validate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: Run Unit Tests
3333
strategy:
3434
matrix:
35-
version: ['3.8', '3.9', '3.10', '3.11', '3.12']
35+
version: ['3.9', '3.10', '3.11', '3.12']
3636
os: [ubuntu-latest]
3737
runs-on: ${{ matrix.os }}
3838
steps:

poetry.lock

Lines changed: 2 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-template-x"
3-
version = "0.2.3"
3+
version = "0.3.0"
44
description = "This is a python template."
55
authors = ["Mark Beacom <m@beacom.dev>"]
66
readme = "README.md"
@@ -10,7 +10,6 @@ keywords = ["app", "cli", "python", "template"]
1010
classifiers = [
1111
"Programming Language :: Python",
1212
"Programming Language :: Python :: 3",
13-
"Programming Language :: Python :: 3.8",
1413
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
@@ -161,7 +160,7 @@ update = ["poetry-update-core", "poetry-update-dev", "poetry-update-test", "poet
161160

162161

163162
[tool.poetry.dependencies]
164-
python = "^3.8"
163+
python = "^3.9"
165164
pip = ">= 24.0"
166165
typer = {extras = ["all"], version = "^0.12.3"}
167166

python_template/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99

1010
from __future__ import annotations
1111

12-
__version__: str = "0.2.3"
12+
__version__: str = "0.3.0"

0 commit comments

Comments
 (0)