summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTelmo "Trooper <telmo.trooper@gmail.com>2019-05-30 01:14:32 -0300
committerIrina Truong <i.chernyavska@gmail.com>2019-05-29 21:14:32 -0700
commit8c597751fdbc5a7082ec6f3053c1b066bbac5b3e (patch)
treeef9f432d1eac61855221e6a8fbb5e81d9b7697de
parent8cb7009bcd0f0062942932c853706a36178f566c (diff)
Allow psycopg2 up to 2.8.2 (#1060)
* Allow psycopg2 up to 2.8.2 This fixes the issue with pgcli not working on Arch Linux, since the package `python2-psycopg2` is already on 2.8.2. * Added name to 'AUTHORS' and contribution to 'changelog.rst' referring to #2de6266 * Allow for newer versions of psycopg2 to be used
-rw-r--r--AUTHORS1
-rw-r--r--changelog.rst2
-rw-r--r--setup.py2
3 files changed, 4 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 87488d11..268c6b19 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -95,6 +95,7 @@ Contributors:
* raylu
* Zhaolong Zhu
* Zane C. Bowers-Hadley
+ * Telmo "Trooper" (telmotrooper)
Creator:
--------
diff --git a/changelog.rst b/changelog.rst
index 1fb0b90a..3331eeb2 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -11,6 +11,7 @@ Bug fixes:
* No longer depend on sqlparse as being less than 0.3.0 with the release of sqlparse 0.3.0. (Thanks: `VVelox`_)
* Fix the broken support for pgservice . (Thanks: `Xavier Francisco`_)
* Connecting using socket is broken in current master. (#1053). (Thanks: `Irina Truong`_)
+* Allow usage of newer versions of psycopg2 (Thanks: `Telmo "Trooper"`_)
Internal:
---------
@@ -975,3 +976,4 @@ Improvements:
.. _`Zhaolong Zhu`: https://github.com/zzl0
.. _`Xavier Francisco`: https://github.com/Qu4tro
.. _`VVelox`: https://github.com/VVelox
+.. _`Telmo "Trooper"`: https://github.com/telmotrooper
diff --git a/setup.py b/setup.py
index 57d791ae..029c1c01 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ install_requirements = [
"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.3.0,<0.4",
"configobj >= 5.0.6",
"humanize >= 0.5.1",