Skip to content

Commit a06fd82

Browse files
committed
chore: remove python 3.9 support
1 parent 75b7132 commit a06fd82

3 files changed

Lines changed: 29 additions & 401 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
19+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2020

2121
steps:
2222
- uses: actions/checkout@v6
@@ -33,8 +33,8 @@ jobs:
3333
uv sync --locked
3434
- name: Lint
3535
run: |
36-
uv run black --check src test
37-
uv run isort --check src test
36+
uv run ruff format --check
37+
uv run ruff check
3838
- name: Test with pytest
3939
run: |
4040
uv run pytest --cov

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ name = "jira-commit-msg"
33
version = "0.1.0"
44
description = "A pre-commit compliant hook to add JIRA ticket data to commit msg"
55
authors = [{ name = "Louis-Amaury Chaib", email = "louisamaury.chaib@gmail.com" }]
6-
requires-python = ">=3.9,<4"
6+
requires-python = ">=3.10,<4"
77
readme = "README.md"
88
license = "MIT"
99
classifiers = [
1010
"Programming Language :: Python :: 3",
11-
"Programming Language :: Python :: 3.9",
1211
"Programming Language :: Python :: 3.10",
1312
"Programming Language :: Python :: 3.11",
1413
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)