[Python-modules-commits] [python-vertica] 01/05: Import python-vertica_0.5.5.orig.tar.gz
Jean Baptiste Favre
jbfavre-guest at moszumanska.debian.org
Tue Dec 8 13:20:19 UTC 2015
This is an automated email from the git hooks/post-receive script.
jbfavre-guest pushed a commit to branch master
in repository python-vertica.
commit 04a0a27184873361e3320a5d38ed1751658140a4
Author: Jean Baptiste Favre <debian at jbfavre.org>
Date: Tue Dec 8 13:36:36 2015 +0100
Import python-vertica_0.5.5.orig.tar.gz
---
README.md | 4 +++-
setup.py | 2 +-
vertica_python/__init__.py | 2 +-
3 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 7376706..fbc33b0 100644
--- a/README.md
+++ b/README.md
@@ -59,7 +59,9 @@ conn_info = {'host': '127.0.0.1',
'port': 5433,
'user': 'some_user',
'password': 'some_password',
- 'database': 'a_database'}
+ 'database': 'a_database',
+ # 10 minutes timeout on queries
+ 'read_timeout': 600}
# simple connection, with manual close
connection = vertica_python.connect(**conn_info)
diff --git a/setup.py b/setup.py
index a014c13..71b8559 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ opts = ReqOpts(None, 'git')
# version should use the format 'x.x.x' (instead of 'vx.x.x')
setup(
name='vertica-python',
- version='0.5.4',
+ version='0.5.5',
description='A native Python client for the Vertica database.',
author='Justin Berka, Alex Kim, Kenneth Tran',
author_email='justin.berka at gmail.com, alex.kim at uber.com, tran at uber.com',
diff --git a/vertica_python/__init__.py b/vertica_python/__init__.py
index 3177420..944ea39 100644
--- a/vertica_python/__init__.py
+++ b/vertica_python/__init__.py
@@ -6,7 +6,7 @@ from vertica_python.vertica.connection import Connection
# Main module for this library.
# The version number of this library.
-version_info = (0, 5, 4)
+version_info = (0, 5, 5)
__version__ = '.'.join(map(str, version_info))
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-vertica.git
More information about the Python-modules-commits
mailing list