Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev/v1.9.0 #161

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/oracle-xe-adapter-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/oracle/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ tox
coverage
twine
pytest
dbt-tests-adapter~=1.8,<1.9
dbt-tests-adapter~=1.10,<1.11
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]

Expand All @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading