summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-10-08 19:15:13 -0700
committerGary E. Miller <gem@rellim.com>2018-10-08 19:15:13 -0700
commitf654c64e873a29d4f9c9ed316250afd8b2b8c5f2 (patch)
tree3ce49c0e10b0ef633779f1f496187741f5cfacc8 /SConstruct
parent5aec91b3867fc9a699db747a2eb517f5934e9096 (diff)
downloadgpsd-f654c64e873a29d4f9c9ed316250afd8b2b8c5f2.tar.gz
SConstruct: gpsd needs at least Python 2.6.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 2 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index b70fee26..77d48917 100644
--- a/SConstruct
+++ b/SConstruct
@@ -91,7 +91,8 @@ website = "http://catb.org/gpsd"
webupload = "login.ibiblio.org:/public/html/catb/gpsd"
# Hosting information ends here
-EnsureSConsVersion(2, 3, 0)
+# gpsd needs at least Pyton version 2.6. Any Python 3 should work.
+EnsureSConsVersion(2, 6, 0)
PYTHON_SYSCONFIG_IMPORT = 'from distutils import sysconfig'