Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 7cb296a

Browse files
Requiring Python >=3.8 enables walrus operator (#852) (#856)
* Requiring Python >=3.8 enables walrus operator * Update comment to be evergreen --------- Co-authored-by: Mike Alfare <[email protected]> (cherry picked from commit 4368ef4) Co-authored-by: Doug Beatty <[email protected]>
1 parent 78a9ec5 commit 7cb296a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: Fixes
2+
body: Requiring Python >=3.8 enables walrus operator
3+
time: 2023-08-03T10:29:15.371798-06:00
4+
custom:
5+
Author: cemsbr dbeatty10
6+
Issue: "849"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
import sys
33

4-
# require python 3.7 or newer
4+
# require a supported version of Python
55
if sys.version_info < (3, 8):
66
print("Error: dbt does not support this version of Python.")
77
print("Please upgrade to Python 3.8 or higher.")
@@ -91,5 +91,5 @@ def _dbt_core_version(plugin_version: str) -> str:
9191
"Programming Language :: Python :: 3.10",
9292
"Programming Language :: Python :: 3.11",
9393
],
94-
python_requires=">=3.7",
94+
python_requires=">=3.8",
9595
)

0 commit comments

Comments
 (0)