Skip to content

Commit 4d5badb

Browse files
chore: drop Python 3.9 from CI matrix and pyproject (#22)
1 parent 6e5016b commit 4d5badb

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
fail-fast: false
4242
matrix:
43-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
43+
python-version: ['3.10', '3.11', '3.12', '3.13']
4444
steps:
4545
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
4646
with:

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "0.2.0"
88
description = "Verify Pipelock receipts: ActionReceipt v1 chains and individual EvidenceReceipt v2 envelopes."
99
readme = "README.md"
1010
license = "Apache-2.0"
11-
requires-python = ">=3.9.2"
11+
requires-python = ">=3.10"
1212
authors = [
1313
{ name = "PipeLab", email = "luckypipe@pipelab.org" },
1414
]
@@ -26,7 +26,6 @@ classifiers = [
2626
"Intended Audience :: System Administrators",
2727
"Operating System :: OS Independent",
2828
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.9",
3029
"Programming Language :: Python :: 3.10",
3130
"Programming Language :: Python :: 3.11",
3231
"Programming Language :: Python :: 3.12",
@@ -82,6 +81,6 @@ select = ["E", "F", "W", "I", "B", "UP", "RUF"]
8281
ignore = ["E501"] # line length handled by formatter
8382

8483
[tool.mypy]
85-
python_version = "3.9"
84+
python_version = "3.10"
8685
strict = true
8786
warn_return_any = true

0 commit comments

Comments
 (0)