summaryrefslogtreecommitdiff
path: root/psycopg/python.h
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2020-11-17 22:17:12 +0200
committerGitHub <noreply@github.com>2020-11-17 20:17:12 +0000
commit694a20fb9518676223b987a62965ccc13213d2e3 (patch)
treed9f85a4327df005c1b50b464530d05ec2aaf3006 /psycopg/python.h
parent490c53bace278dbc8745649c9dd75f9097a7276d (diff)
downloadpsycopg2-694a20fb9518676223b987a62965ccc13213d2e3.tar.gz
Drop support for EOL Python 3.5 (#1197)
Diffstat (limited to 'psycopg/python.h')
-rw-r--r--psycopg/python.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/psycopg/python.h b/psycopg/python.h
index 1d3c209..c142de4 100644
--- a/psycopg/python.h
+++ b/psycopg/python.h
@@ -34,8 +34,8 @@
#error "psycopg requires Python 2.7"
#endif
-#if PY_3 && PY_VERSION_HEX < 0x03050000
-#error "psycopg requires Python 3.5"
+#if PY_3 && PY_VERSION_HEX < 0x03060000
+#error "psycopg requires Python 3.6"
#endif
#include <structmember.h>