Skip to content

Commit 1f38fe5

Browse files
committed
Adds Python 3.12 and removes 3.7
Signed-off-by: Fabio Batista <fabio@atelie.dev.br>
1 parent 21572af commit 1f38fe5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
test:
2323
strategy:
2424
matrix:
25-
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
25+
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
2626
os: [ubuntu-latest, windows-latest, macos-latest]
2727
runs-on: ${{ matrix.os }}
2828
steps:

mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[mypy]
22
plugins = pydantic.mypy
3-
python_version = 3.7
3+
python_version = 3.8
44

55
pretty = True
66
show_error_context = True

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ def get_version(rel_path):
6565
"Programming Language :: Python",
6666
"Programming Language :: Python :: 3",
6767
"Programming Language :: Python :: 3 :: Only",
68-
"Programming Language :: Python :: 3.7",
6968
"Programming Language :: Python :: 3.8",
7069
"Programming Language :: Python :: 3.9",
7170
"Programming Language :: Python :: 3.10",
7271
"Programming Language :: Python :: 3.11",
72+
"Programming Language :: Python :: 3.12",
7373
"Typing :: Typed",
7474
],
7575
keywords="CloudEvents Eventing Serverless",

0 commit comments

Comments
 (0)