We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e9d559 commit 6045c41Copy full SHA for 6045c41
databend_sqlalchemy/__init__.py
@@ -1,5 +1,5 @@
1
#!/usr/bin/env python
2
3
4
-VERSION = (0, 4, 0)
+VERSION = (0, 4, 1)
5
__version__ = ".".join(str(x) for x in VERSION)
databend_sqlalchemy/connector.py
@@ -9,7 +9,7 @@
9
from datetime import datetime
10
from databend_sqlalchemy.errors import ServerException, NotSupportedError
11
12
-from databend_py import BlockingDatabendClient
+from databend_driver import BlockingDatabendClient
13
14
# PEP 249 module globals
15
apilevel = "2.0"
setup.cfg
@@ -25,7 +25,7 @@ project_urls =
25
[options]
26
packages = find:
27
install_requires =
28
- databend_py>=0.5.0
+ databend__driver>=0.12.1
29
sqlalchemy>1.3.21,<2.0
30
python_requires = >=3.7
31
package_dir =
0 commit comments