Skip to content

Commit 8d01355

Browse files
authored
Merge pull request #162 from oracle/dev/v1.9
Initial changes for 1.9.0
2 parents 3b13c5f + 72029ef commit 8d01355

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.github/workflows/oracle-xe-adapter-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Install dbt-oracle with core dependencies
4949
run: |
5050
python -m pip install --upgrade pip
51-
pip install pytest 'dbt-tests-adapter~=1.8,<1.9'
51+
pip install pytest 'dbt-tests-adapter~=1.10,<1.11'
5252
pip install -r requirements.txt
5353
pip install -e .
5454

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Configuration variables
2-
VERSION=1.8.4
2+
VERSION=1.9.0
33
PROJ_DIR?=$(shell pwd)
44
VENV_DIR?=${PROJ_DIR}/.bldenv
55
BUILD_DIR=${PROJ_DIR}/build
66
DIST_DIR=${PROJ_DIR}/dist
7-
PYTHON_3=python3.9
7+
PYTHON_3=python3.12
88

99

1010
clean_venv:

dbt/adapters/oracle/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
"""
17-
version = "1.8.4"
17+
version = "1.9.0"

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dbt-common>=1.1.0,<2.0
22
dbt-adapters>=1.2.1,<2.0
3-
dbt-core>=1.8.1,<2.0
3+
dbt-core>=1.9.1,<2.0
44
oracledb==2.5.1

requirements_dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ tox
66
coverage
77
twine
88
pytest
9-
dbt-tests-adapter~=1.8,<1.9
9+
dbt-tests-adapter~=1.10,<1.11

setup.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dbt-oracle
3-
version = 1.8.4
3+
version = 1.9.0
44
description = dbt (data build tool) adapter for Oracle Autonomous Database
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -34,11 +34,11 @@ include_package_data = True
3434
install_requires =
3535
dbt-common>=1.1.0,<2.0
3636
dbt-adapters>=1.2.1,<2.0
37-
dbt-core~=1.8,<1.9
37+
dbt-core~=1.9,<1.10
3838
oracledb==2.5.1
3939
test_suite=tests
4040
test_requires =
41-
dbt-tests-adapter~=1.8,<1.9
41+
dbt-tests-adapter~=1.10,<1.11
4242
pytest
4343
scripts =
4444
bin/create-pem-from-p12

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@
4242
requirements = [
4343
"dbt-common>=1.1.0,<2.0",
4444
"dbt-adapters>=1.2.1,<2.0",
45-
"dbt-core~=1.8,<1.9",
45+
"dbt-core~=1.9,<1.10",
4646
"oracledb==2.5.1"
4747
]
4848

4949
test_requirements = [
50-
"dbt-tests-adapter~=1.8,<1.9",
50+
"dbt-tests-adapter~=1.10,<1.11",
5151
"pytest"
5252
]
5353

@@ -61,7 +61,7 @@
6161

6262
url = 'https://github.com/oracle/dbt-oracle'
6363

64-
VERSION = '1.8.4'
64+
VERSION = '1.9.0'
6565
setup(
6666
author="Oracle",
6767
python_requires='>=3.9',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ passenv =
1515

1616
deps =
1717
-rrequirements.txt
18-
dbt-tests-adapter~=1.8,<1.9
18+
dbt-tests-adapter~=1.10,<1.11
1919
pytest
2020

2121
commands = pytest

0 commit comments

Comments
 (0)