Skip to content

Commit 1b45671

Browse files
committed
Migrate to Python 3.8
Signed-off-by: Yurii Serhiichuk <[email protected]>
1 parent f901469 commit 1b45671

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/main.yml

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

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
### Changed
10+
11+
- Dropped Python3.7 from CI while it's EOL.
12+
913
## [1.10.1]
1014

1115
### Fixed

mypy.ini

+1-1
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

-2
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,10 @@ 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",
73-
"Programming Language :: Python :: 3.12",
7472
"Typing :: Typed",
7573
],
7674
keywords="CloudEvents Eventing Serverless",

0 commit comments

Comments
 (0)