Skip to content

Commit

Permalink
Remove support of python 3.7
Browse files Browse the repository at this point in the history
Python 3.7 has reached its end-of-life:
https://peps.python.org/pep-0537/#lifespan

Also add python 3.12 to the ci test matrix.
  • Loading branch information
lucc committed Nov 17, 2023
1 parent 58dcfcf commit b730d38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
]
description = "A console address book manager"
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"

classifiers = [
"Development Status :: 4 - Beta",
Expand Down Expand Up @@ -71,7 +71,7 @@ module = [
ignore_missing_imports = true

[tool.pylint.main]
py-version = "3.7"
py-version = "3.8"
ignore-paths = ["khard/version.py"]

[tool.pylint."messages control"]
Expand Down

0 comments on commit b730d38

Please sign in to comment.