Skip to content

Commit

Permalink
deprecate: Python 3.8 support removal (#158)
Browse files Browse the repository at this point in the history
* deprecate: Python 3.8 support removal

* deprecate: Python 3.8 support removal
  • Loading branch information
mbeacom authored Jul 12, 2024
1 parent 72c3238 commit 5b149b6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 55 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
name: Run Unit Tests
strategy:
matrix:
version: ['3.8', '3.9', '3.10', '3.11', '3.12']
version: ['3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
52 changes: 2 additions & 50 deletions poetry.lock

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

5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "python-template-x"
version = "0.2.3"
version = "0.3.0"
description = "This is a python template."
authors = ["Mark Beacom <[email protected]>"]
readme = "README.md"
Expand All @@ -10,7 +10,6 @@ keywords = ["app", "cli", "python", "template"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -161,7 +160,7 @@ update = ["poetry-update-core", "poetry-update-dev", "poetry-update-test", "poet


[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
pip = ">= 24.0"
typer = {extras = ["all"], version = "^0.12.3"}

Expand Down
2 changes: 1 addition & 1 deletion python_template/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

from __future__ import annotations

__version__: str = "0.2.3"
__version__: str = "0.3.0"

0 comments on commit 5b149b6

Please sign in to comment.