Permalink
Browse files
pgcli: update to 2.1.0
Added patch to setup.py allowing psycopg2 versions above 2.8. Original project added this limitation since version 2.8 psycopg2 pip package is source-only and requires a toolchain to build. Psycopg2 is compilled and installed by macports as a dependency so such restriction is not required.
- Loading branch information
Showing
with
30 additions
and 4 deletions.
| @@ -0,0 +1,11 @@ | ||
| --- setup.py.orig 2019-04-19 22:22:43.000000000 +0200 | ||
| +++ setup.py 2019-04-19 22:22:55.000000000 +0200 | ||
| @@ -16,7 +16,7 @@ | ||
| 'click >= 4.1', | ||
| 'Pygments >= 2.0', # Pygments has to be Capitalcased. WTF? | ||
| 'prompt_toolkit>=1.0.10,<1.1.0', | ||
| - 'psycopg2 >= 2.7.4,<2.8', | ||
| + 'psycopg2 >= 2.7.4', | ||
| 'sqlparse >=0.2.2,<0.3.0', | ||
| 'configobj >= 5.0.6', | ||
| 'humanize >= 0.5.1', |
| @@ -0,0 +1,11 @@ | ||
| --- setup.py.orig 2019-04-19 21:43:16.000000000 +0200 | ||
| +++ setup.py 2019-04-19 21:43:31.000000000 +0200 | ||
| @@ -16,7 +16,7 @@ | ||
| 'click >= 4.1', | ||
| 'Pygments >= 2.0', # Pygments has to be Capitalcased. WTF? | ||
| 'prompt_toolkit>=2.0.6,<2.1.0', | ||
| - 'psycopg2 >= 2.7.4,<2.8', | ||
| + 'psycopg2 >= 2.7.4', | ||
| 'sqlparse >=0.2.2,<0.3.0', | ||
| 'configobj >= 5.0.6', | ||
| 'humanize >= 0.5.1', |