mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
Remove setup.py fallback that assumes postgres 7.4.0.
pyscopg2 only supports postgres >= 9.1 these days. Thus, taking this fallback will only lead to failure later down the line.
This commit is contained in:
parent
344ce15261
commit
f86229d98b
8
setup.py
8
setup.py
|
@ -416,13 +416,7 @@ For further information please check the 'doc/src/install.rst' file (also at
|
||||||
self.library_dirs.append(pg_config_helper.query("libdir"))
|
self.library_dirs.append(pg_config_helper.query("libdir"))
|
||||||
self.include_dirs.append(pg_config_helper.query("includedir"))
|
self.include_dirs.append(pg_config_helper.query("includedir"))
|
||||||
self.include_dirs.append(pg_config_helper.query("includedir-server"))
|
self.include_dirs.append(pg_config_helper.query("includedir-server"))
|
||||||
try:
|
pgversion = pg_config_helper.query("version").split()[1]
|
||||||
# Here we take a conservative approach: we suppose that
|
|
||||||
# *at least* PostgreSQL 7.4 is available (this is the only
|
|
||||||
# 7.x series supported by psycopg 2)
|
|
||||||
pgversion = pg_config_helper.query("version").split()[1]
|
|
||||||
except Exception:
|
|
||||||
pgversion = "7.4.0"
|
|
||||||
|
|
||||||
verre = re.compile(
|
verre = re.compile(
|
||||||
r"(\d+)(?:\.(\d+))?(?:(?:\.(\d+))|(devel|(?:alpha|beta|rc)\d+))?")
|
r"(\d+)(?:\.(\d+))?(?:(?:\.(\d+))|(devel|(?:alpha|beta|rc)\d+))?")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user