Skip to content

Commit 6045c41

Browse files
authored
fix: update dependency for driver (#9)
1 parent 5e9d559 commit 6045c41

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

databend_sqlalchemy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
22

33

4-
VERSION = (0, 4, 0)
4+
VERSION = (0, 4, 1)
55
__version__ = ".".join(str(x) for x in VERSION)

databend_sqlalchemy/connector.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from datetime import datetime
1010
from databend_sqlalchemy.errors import ServerException, NotSupportedError
1111

12-
from databend_py import BlockingDatabendClient
12+
from databend_driver import BlockingDatabendClient
1313

1414
# PEP 249 module globals
1515
apilevel = "2.0"

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ project_urls =
2525
[options]
2626
packages = find:
2727
install_requires =
28-
databend_py>=0.5.0
28+
databend__driver>=0.12.1
2929
sqlalchemy>1.3.21,<2.0
3030
python_requires = >=3.7
3131
package_dir =

0 commit comments

Comments
 (0)