Skip to content

Commit

Permalink
bump to 0.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kim committed Aug 17, 2016
1 parent 6595039 commit fb468b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,19 @@
# version should use the format 'x.x.x' (instead of 'vx.x.x')
setup(
name='vertica-python',
version='0.6.5',
version='0.6.6',
description='A native Python client for the Vertica database.',
author='Justin Berka, Alex Kim, Kenneth Tran',
author_email='[email protected], [email protected], [email protected]',
author='Justin Berka, Alex Kim',
author_email='[email protected], [email protected]',
url='https://github.com/uber/vertica-python/',
keywords="database vertica",
packages=find_packages(),
license="MIT",
install_requires=[
'python-dateutil>=1.5',
'pytz',
'future'
'future',
'six>=1.10.0'
],
extras_require={'namedparams': ['psycopg2>=2.5.1']},
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion vertica_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Main module for this library.

# The version number of this library.
version_info = (0, 6, 5)
version_info = (0, 6, 6)

__version__ = '.'.join(map(str, version_info))

Expand Down

0 comments on commit fb468b6

Please sign in to comment.