Skip to content

Commit

Permalink
build: drop support for Python 3.8 and 3.9
Browse files Browse the repository at this point in the history
Change-Id: I88c01e69e8c29de92b02ac56f1757332e42cef87
  • Loading branch information
jd committed Dec 13, 2024
1 parent 3561193 commit f0fae13
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
test:
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python: ["3.10", "3.11", "3.12", "3.13"]

runs-on: ubuntu-22.04
steps:
Expand Down
2 changes: 0 additions & 2 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ queue_rules:
queue_conditions:
- "#approved-reviews-by>=1"
- "check-success=pep8"
- "check-success=test (3.8)"
- "check-success=test (3.9)"
- "check-success=test (3.10)"
- "check-success=test (3.11)"
- "check-success=test (3.12)"
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "daiquiri"
requires-python = ">=3.8"
requires-python = ">=3.10"
dynamic = ["version"]
license = {"text" = "Apache 2.0"}
description = "Library to configure Python logging easily"
Expand All @@ -19,8 +19,6 @@ classifiers = [
"Operating System :: POSIX :: Linux",
"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",
"Programming Language :: Python :: 3.12",
Expand All @@ -46,7 +44,7 @@ test = ["pytest"]
systemd = ["systemd-python>=234"]

[tool.black]
target-version = ['py38', 'py39', 'py310', 'py311', 'py312', 'py313']
target-version = ['py310', 'py311', 'py312', 'py313']

[tool.mypy]
files = "daiquiri"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38,py39,py310,py311,py312,py313,pep8,docs
envlist = py310,py311,py312,py313,pep8,docs

[testenv]
allowlist_externals = sh
Expand Down

0 comments on commit f0fae13

Please sign in to comment.