1
1
mirror of https://github.com/dbcli/pgcli.git synced 2024-09-19 17:58:44 +03:00

click version must be >= 3.2

Because it uses click.termui.secho() with the keyword argument 'err' that has
been added in click 3.2.

Fixes #54
This commit is contained in:
Guewen Baconnier 2015-01-07 09:10:18 +01:00
parent 25425c72c8
commit 2c57e43728

View File

@ -23,7 +23,7 @@ setup(
description=description,
long_description=open('README.rst').read(),
install_requires=[
'click >= 3.0',
'click >= 3.2',
'prompt_toolkit==0.25', # Need to pin this to 0.25 since APIs change quite a bit after this.
'psycopg2 >= 2.5.4',
'sqlparse >= 0.1.14',