Skip to content

Commit a6fec8f

Browse files
authored
Merge pull request #76 from oracle/fix/pytz
pytz ModuleNotFoundError
2 parents 27184b2 + 4bfb68b commit a6fec8f

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
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.4.1
51+
pip install pytest dbt-tests-adapter==1.4.4
5252
pip install -r requirements.txt
5353
pip install -e .
5454

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Configuration variables
2-
VERSION=1.3.2
2+
VERSION=1.4.1
33
PROJ_DIR?=$(shell pwd)
44
VENV_DIR?=${PROJ_DIR}/.bldenv
55
BUILD_DIR=${PROJ_DIR}/build

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.4.1"
17+
version = "1.4.4"

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dbt-core==1.4.1
1+
dbt-core==1.4.4
22
cx_Oracle==8.3.0
33
oracledb==1.2.2
44

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.4.1
9+
dbt-tests-adapter==1.4.4

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.4.0
3+
version = 1.4.1
44
description = dbt (data build tool) adapter for the Oracle database
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -33,12 +33,12 @@ zip_safe = False
3333
packages = find:
3434
include_package_data = True
3535
install_requires =
36-
dbt-core==1.4.1
36+
dbt-core==1.4.4
3737
cx_Oracle==8.3.0
3838
oracledb==1.2.2
3939
test_suite=tests
4040
test_requires =
41-
dbt-tests-adapter==1.4.1
41+
dbt-tests-adapter==1.4.4
4242
pytest
4343
scripts =
4444
bin/create-pem-from-p12

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232

3333

3434
requirements = [
35-
"dbt-core==1.4.1",
35+
"dbt-core==1.4.4",
3636
"cx_Oracle==8.3.0",
3737
"oracledb==1.2.2"
3838
]
3939

4040
test_requirements = [
41-
"dbt-tests-adapter==1.4.1",
41+
"dbt-tests-adapter==1.4.4",
4242
"pytest"
4343
]
4444

@@ -52,7 +52,7 @@
5252

5353
url = 'https://github.com/oracle/dbt-oracle'
5454

55-
VERSION = '1.4.0'
55+
VERSION = '1.4.1'
5656
setup(
5757
author="Oracle",
5858
python_requires='>=3.7.2',

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.4.1
18+
dbt-tests-adapter==1.4.4
1919
pytest
2020

2121
commands = pytest

0 commit comments

Comments
 (0)