diff --git a/.github/workflows/oracle-xe-adapter-tests.yml b/.github/workflows/oracle-xe-adapter-tests.yml index 4ab579e..635b34d 100644 --- a/.github/workflows/oracle-xe-adapter-tests.yml +++ b/.github/workflows/oracle-xe-adapter-tests.yml @@ -48,7 +48,7 @@ jobs: - name: Install dbt-oracle with core dependencies run: | python -m pip install --upgrade pip - pip install pytest 'dbt-tests-adapter~=1.8,<1.9' + pip install pytest 'dbt-tests-adapter~=1.10,<1.11' pip install -r requirements.txt pip install -e . diff --git a/Makefile b/Makefile index 4a66204..6ac8918 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Configuration variables -VERSION=1.8.4 +VERSION=1.9.0 PROJ_DIR?=$(shell pwd) VENV_DIR?=${PROJ_DIR}/.bldenv BUILD_DIR=${PROJ_DIR}/build DIST_DIR=${PROJ_DIR}/dist -PYTHON_3=python3.9 +PYTHON_3=python3.12 clean_venv: diff --git a/dbt/adapters/oracle/__version__.py b/dbt/adapters/oracle/__version__.py index 791f67d..fa0d09a 100644 --- a/dbt/adapters/oracle/__version__.py +++ b/dbt/adapters/oracle/__version__.py @@ -14,4 +14,4 @@ See the License for the specific language governing permissions and limitations under the License. """ -version = "1.8.4" +version = "1.9.0" diff --git a/requirements.txt b/requirements.txt index 3b0fccd..35ffb48 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ dbt-common>=1.1.0,<2.0 dbt-adapters>=1.2.1,<2.0 -dbt-core>=1.8.1,<2.0 +dbt-core>=1.9.1,<2.0 oracledb==2.5.1 diff --git a/requirements_dev.txt b/requirements_dev.txt index eb14ecc..8208904 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -6,4 +6,4 @@ tox coverage twine pytest -dbt-tests-adapter~=1.8,<1.9 +dbt-tests-adapter~=1.10,<1.11 diff --git a/setup.cfg b/setup.cfg index bbe8d32..9e3caab 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dbt-oracle -version = 1.8.4 +version = 1.9.0 description = dbt (data build tool) adapter for Oracle Autonomous Database long_description = file: README.md long_description_content_type = text/markdown @@ -34,11 +34,11 @@ include_package_data = True install_requires = dbt-common>=1.1.0,<2.0 dbt-adapters>=1.2.1,<2.0 - dbt-core~=1.8,<1.9 + dbt-core~=1.9,<1.10 oracledb==2.5.1 test_suite=tests test_requires = - dbt-tests-adapter~=1.8,<1.9 + dbt-tests-adapter~=1.10,<1.11 pytest scripts = bin/create-pem-from-p12 diff --git a/setup.py b/setup.py index f8cb5f5..c0e3742 100644 --- a/setup.py +++ b/setup.py @@ -42,12 +42,12 @@ requirements = [ "dbt-common>=1.1.0,<2.0", "dbt-adapters>=1.2.1,<2.0", - "dbt-core~=1.8,<1.9", + "dbt-core~=1.9,<1.10", "oracledb==2.5.1" ] test_requirements = [ - "dbt-tests-adapter~=1.8,<1.9", + "dbt-tests-adapter~=1.10,<1.11", "pytest" ] @@ -61,7 +61,7 @@ url = 'https://github.com/oracle/dbt-oracle' -VERSION = '1.8.4' +VERSION = '1.9.0' setup( author="Oracle", python_requires='>=3.9', diff --git a/tox.ini b/tox.ini index d2c832a..c7c48be 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,7 @@ passenv = deps = -rrequirements.txt - dbt-tests-adapter~=1.8,<1.9 + dbt-tests-adapter~=1.10,<1.11 pytest commands = pytest