From 3d78a8adf9d363bdf482af26658a84e2cfe8161f Mon Sep 17 00:00:00 2001 From: Abhishek Singh Date: Wed, 25 May 2022 17:19:56 -0700 Subject: [PATCH] v1.0.2 - networkx a dependency of dbt-core just released a version 2.8.1 which is incompatible with Python 3.7 - dbt-core v1.0.7 fixes this by defining a conditional dependency on networkx based on the Python 3 version --- .gitignore | 1 + requirements.txt | 2 +- setup.cfg | 4 ++-- setup.py | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 377c2d6..b7ed43e 100644 --- a/.gitignore +++ b/.gitignore @@ -138,3 +138,4 @@ tests/oracle_1TLS.dbtspec doc/.docenv doc/build.gitbak .gitbak/ +.venvpy37 diff --git a/requirements.txt b/requirements.txt index 6bbb9bb..e7cc0cc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ dbt-core==0.21.1; python_version < '3.7' -dbt-core==1.0.6; python_version >= '3.7' +dbt-core==1.0.7; python_version >= '3.7' dataclasses; python_version < '3.7' cx_Oracle==8.3.0 diff --git a/setup.cfg b/setup.cfg index 641166e..0a5d2d5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dbt-oracle -version = 1.0.1 +version = 1.0.2 description = dbt (data build tool) adapter for the Oracle database long_description = file: README.md long_description_content_type = text/markdown @@ -31,7 +31,7 @@ packages = find: include_package_data = True install_requires = dbt-core==0.21.1; python_version < '3.7' - dbt-core==1.0.6; python_version >= '3.7' + dbt-core==1.0.7; python_version >= '3.7' cx_Oracle==8.3.0 dataclasses; python_version < '3.7' test_suite=tests diff --git a/setup.py b/setup.py index 363c669..683c0a2 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ requirements = [ "dbt-core==0.21.1; python_version < '3.7'", - "dbt-core==1.0.6; python_version >= '3.7'", + "dbt-core==1.0.7; python_version >= '3.7'", "cx_Oracle==8.3.0", "dataclasses; python_version < '3.7'" ] @@ -43,7 +43,7 @@ url = 'https://github.com/oracle/dbt-oracle' -VERSION='1.0.1' +VERSION='1.0.2' setup( author="Oracle", python_requires='>=3.6',