Skip to content

Commit

Permalink
adding
Browse files Browse the repository at this point in the history
  • Loading branch information
Sachin-Thakur committed Nov 9, 2023
1 parent df9d814 commit 2f4bbd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/vertica-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8','3.9' ,'3.10', '3.11']
python-version: [ '3.7','3.8','3.9' ,'3.10', '3.11']
services:
vertica:
image: vertica/vertica-ce:latest
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import re

# require python 3.8 or newer
if sys.version_info < (3, 8):
if sys.version_info < (3, 7):
print("Error: dbt does not support this version of Python.")
print("Please upgrade to Python 3.8 or higher.")
sys.exit(1)
Expand Down Expand Up @@ -127,5 +127,5 @@ def _get_dbt_core_version():
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent"
],
python_requires=">=3.8.0",
python_requires=">=3.7.0",
)

0 comments on commit 2f4bbd9

Please sign in to comment.