Skip to content

Commit 0dadc44

Browse files
committed
Bump minimum required Python version to 3.3
1 parent 1f61818 commit 0dadc44

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import sys
66
import os
77

8-
if sys.version_info[:2] < (3,1):
8+
if sys.version_info[:2] < (3,3):
99
sys.stderr.write(
10-
"ERROR: py-postgresql is for Python 3.1 and greater." + os.linesep
10+
"ERROR: py-postgresql is for Python 3.3 and greater." + os.linesep
1111
)
1212
sys.stderr.write(
1313
"HINT: setup.py was ran using Python " + \

0 commit comments

Comments
 (0)