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',