Skip to content

Commit 5fe21b9

Browse files
committed
Relaxed dbt-core version
1 parent 9d68c97 commit 5fe21b9

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

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

Lines changed: 1 addition & 1 deletion
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.5.3
51+
pip install pytest dbt-tests-adapter~=1.5
5252
pip install -r requirements.txt
5353
pip install -e .
5454

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dbt-core==1.5.3
1+
dbt-core~=1.5
22
cx_Oracle==8.3.0
3-
oracledb==1.3.2
3+
oracledb==1.4.1
44

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ tox
66
coverage
77
twine
88
pytest
9-
dbt-tests-adapter==1.5.3
9+
dbt-tests-adapter~=1.5

setup.cfg

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ project_urls =
2424
Documentation = https://docs.getdbt.com/reference/warehouse-profiles/oracle-profile
2525
Source = https://github.com/oracle/dbt-oracle
2626
Bug Tracker = https://github.com/oracle/dbt-oracle/issues
27-
CI: https://github.com/oracle/dbt-oracle/actions
28-
Release Notes: https://github.com/oracle/dbt-oracle/releases
27+
CI = https://github.com/oracle/dbt-oracle/actions
28+
Release Notes = https://github.com/oracle/dbt-oracle/releases
2929

3030
[options]
3131
python_requires = >=3.7.2
3232
zip_safe = False
3333
packages = find:
3434
include_package_data = True
3535
install_requires =
36-
dbt-core==1.5.3
36+
dbt-core~=1.5
3737
cx_Oracle==8.3.0
38-
oracledb==1.3.2
38+
oracledb==1.4.1
3939
test_suite=tests
4040
test_requires =
41-
dbt-tests-adapter==1.5.3
41+
dbt-tests-adapter~=1.5
4242
pytest
4343
scripts =
4444
bin/create-pem-from-p12

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232

3333

3434
requirements = [
35-
"dbt-core==1.5.3",
35+
"dbt-core~=1.5",
3636
"cx_Oracle==8.3.0",
37-
"oracledb==1.3.2"
37+
"oracledb==1.4.1"
3838
]
3939

4040
test_requirements = [
41-
"dbt-tests-adapter==1.5.3",
41+
"dbt-tests-adapter~=1.5",
4242
"pytest"
4343
]
4444

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ passenv =
1515

1616
deps =
1717
-rrequirements.txt
18-
dbt-tests-adapter==1.5.3
18+
dbt-tests-adapter~=1.5
1919
pytest
2020

2121
commands = pytest

0 commit comments

Comments
 (0)