Skip to content

Commit 2c96d7b

Browse files
authored
Upgrade minimum Python version (#37)
1 parent fbf7558 commit 2c96d7b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ jobs:
1111
strategy:
1212
matrix:
1313
python:
14-
- "3.9"
15-
- "3.10"
1614
- "3.11"
1715
- "3.12"
1816
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- The minimum Python version required has been bumped to `3.11`
13+
([#37](https://github.com/trailofbits/pypi-attestations/pull/37))
14+
1015
## [0.0.9]
1116

1217
### Added

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies = [
2020
"sigstore~=3.0.0",
2121
"sigstore-protobuf-specs",
2222
]
23-
requires-python = ">=3.9"
23+
requires-python = ">=3.11"
2424

2525
[project.optional-dependencies]
2626
doc = ["pdoc"]
@@ -75,7 +75,7 @@ warn_unused_ignores = true
7575

7676
[tool.ruff]
7777
line-length = 100
78-
target-version = "py39"
78+
target-version = "py311"
7979

8080
[tool.ruff.lint]
8181
select = ["E", "F", "I", "W", "UP", "ANN", "D", "COM", "ISC", "TCH", "SLF"]

0 commit comments

Comments
 (0)