Skip to content

Commit 4d6d1ae

Browse files
committed
Merge branch 'master' into add_databricks_db_client
2 parents 6736a0f + a377abf commit 4d6d1ae

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.txt

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.0.14] - 2021-03-17
8+
### Fix
9+
- Temporarily pin sqlalchemy to <1.4 due to deprecated ResultProxy interface
710

811
## [0.0.13] - 2020-10-30
9-
### Addition
10-
- Update to pandas 1.1.3 by E.on request
12+
### Addition
13+
- Update to pandas 1.1.3 by E.on request
1114

1215
## [0.0.12] - 2020-09-24
1316
### Fix

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from setuptools.command.install import install
99

1010

11-
VERSION = "0.0.13"
11+
VERSION = "0.0.14"
1212

1313
REPO_ROOT = pathlib.Path(__file__).parent
1414

@@ -43,7 +43,7 @@ def run(self):
4343
# Databricks
4444
"pyodbc",
4545
# Sqlalchemy
46-
"sqlalchemy>1.3",
46+
"sqlalchemy<1.4",
4747
# Athena
4848
"PyAthena==1.10.7",
4949
# SFTP

0 commit comments

Comments
 (0)