Skip to content

Commit c65d622

Browse files
committed
chore: drop support for PY3.9 since it reached EOL
Signed-off-by: Tudor Plugaru <[email protected]>
1 parent a9b9904 commit c65d622

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: CI
22

3-
on: [ push, pull_request ]
3+
on: [push, pull_request]
44

55
jobs:
6-
76
lint:
87
runs-on: ubuntu-latest
98
steps:
@@ -23,8 +22,8 @@ jobs:
2322
test:
2423
strategy:
2524
matrix:
26-
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
27-
os: [ ubuntu-latest, windows-latest, macos-latest ]
25+
python-version: ["3.10", "3.11", "3.12"]
26+
os: [ubuntu-latest, windows-latest, macos-latest]
2827
runs-on: ${{ matrix.os }}
2928
steps:
3029
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
{ name = "The Cloud Events Contributors", email = "[email protected]" }
77
]
88
readme = "README.md"
9-
requires-python = ">= 3.9"
9+
requires-python = ">= 3.10"
1010
license = "Apache-2.0"
1111
classifiers = [
1212
"Intended Audience :: Information Technology",
@@ -19,7 +19,6 @@ classifiers = [
1919
"Programming Language :: Python",
2020
"Programming Language :: Python :: 3",
2121
"Programming Language :: Python :: 3 :: Only",
22-
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",
@@ -81,7 +80,7 @@ packages = ["src/cloudevents"]
8180

8281
[tool.ruff]
8382
line-length = 88
84-
target-version = "py39"
83+
target-version = "py310"
8584

8685
exclude = [
8786
".bzr",
@@ -122,7 +121,7 @@ testpaths = [
122121
]
123122

124123
[tool.mypy]
125-
python_version = 3.9
124+
python_version = "3.10"
126125

127126
ignore_missing_imports = true
128127
namespace_packages = true

0 commit comments

Comments
 (0)