Skip to content

Commit

Permalink
Merge pull request #76 from oracle/fix/pytz
Browse files Browse the repository at this point in the history
pytz ModuleNotFoundError
  • Loading branch information
aosingh authored Mar 4, 2023
2 parents 27184b2 + 4bfb68b commit a6fec8f
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
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.4.1
pip install pytest dbt-tests-adapter==1.4.4
pip install -r requirements.txt
pip install -e .
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Configuration variables
VERSION=1.3.2
VERSION=1.4.1
PROJ_DIR?=$(shell pwd)
VENV_DIR?=${PROJ_DIR}/.bldenv
BUILD_DIR=${PROJ_DIR}/build
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.4.1"
version = "1.4.4"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dbt-core==1.4.1
dbt-core==1.4.4
cx_Oracle==8.3.0
oracledb==1.2.2

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.4.1
dbt-tests-adapter==1.4.4
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.4.0
version = 1.4.1
description = dbt (data build tool) adapter for the Oracle database
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down Expand Up @@ -33,12 +33,12 @@ zip_safe = False
packages = find:
include_package_data = True
install_requires =
dbt-core==1.4.1
dbt-core==1.4.4
cx_Oracle==8.3.0
oracledb==1.2.2
test_suite=tests
test_requires =
dbt-tests-adapter==1.4.1
dbt-tests-adapter==1.4.4
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 @@ -32,13 +32,13 @@


requirements = [
"dbt-core==1.4.1",
"dbt-core==1.4.4",
"cx_Oracle==8.3.0",
"oracledb==1.2.2"
]

test_requirements = [
"dbt-tests-adapter==1.4.1",
"dbt-tests-adapter==1.4.4",
"pytest"
]

Expand All @@ -52,7 +52,7 @@

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

VERSION = '1.4.0'
VERSION = '1.4.1'
setup(
author="Oracle",
python_requires='>=3.7.2',
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.4.1
dbt-tests-adapter==1.4.4
pytest

commands = pytest

0 comments on commit a6fec8f

Please sign in to comment.