From 2f4bbd9ab633190e81dd572652e1058d501f3383 Mon Sep 17 00:00:00 2001 From: sachinthakur96 Date: Thu, 9 Nov 2023 18:11:10 +0530 Subject: [PATCH] adding --- .github/workflows/vertica-test.yml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/vertica-test.yml b/.github/workflows/vertica-test.yml index dd78ff0..473a749 100644 --- a/.github/workflows/vertica-test.yml +++ b/.github/workflows/vertica-test.yml @@ -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 diff --git a/setup.py b/setup.py index 08af162..048b449 100644 --- a/setup.py +++ b/setup.py @@ -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) @@ -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", )