summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2020-12-04 20:43:43 +0000
committernia <nia@pkgsrc.org>2020-12-04 20:43:43 +0000
commit00fa5d76195777807cd64ed9f07dc0cefefe2d4b (patch)
treeb1eb79e34ac2da424066eb11b61c32ee79182fff
parentf95443229a0bfa6e08c8d6addff6bf6005874cf0 (diff)
downloadpkgsrc-00fa5d76195777807cd64ed9f07dc0cefefe2d4b.tar.gz
Switch the default Python version to 3.8
3.7 is currently in security fixes only mode, but 3.8 will continue to recieve a few more months of normal bug fixes. This should give us time to prep the tree for 3.9 (a few packages are not happy with 3.9 yet). 3.8 might be more problematic than 3.7 for Linuxes using older compilers where shm_open isn't detected probably (however this problem doesn't seem to be entirely absent in 3.7, as shown by certain packages like mozjs*?). According to the CentOS 7 folks on tech-pkg this should be possible to work around by using a newer compiler.
-rw-r--r--lang/python/pyversion.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/python/pyversion.mk b/lang/python/pyversion.mk
index 3928274d663..69d16260edf 100644
--- a/lang/python/pyversion.mk
+++ b/lang/python/pyversion.mk
@@ -1,4 +1,4 @@
-# $NetBSD: pyversion.mk,v 1.132 2020/10/10 20:19:47 adam Exp $
+# $NetBSD: pyversion.mk,v 1.133 2020/12/04 20:43:43 nia Exp $
# This file determines which Python version is used as a dependency for
# a package.
@@ -9,7 +9,7 @@
# The preferred Python version to use.
#
# Possible values: 27 36 37 38 39
-# Default: 37
+# Default: 38
#
# === Infrastructure variables ===
#
@@ -84,7 +84,7 @@ PYTHON_VERSION_REQD?= ${PKGNAME_OLD:C/(^.*-|^)py([0-9][0-9])-.*/\2/}
BUILD_DEFS+= PYTHON_VERSION_DEFAULT
BUILD_DEFS_EFFECTS+= PYPACKAGE
-PYTHON_VERSION_DEFAULT?= 37
+PYTHON_VERSION_DEFAULT?= 38
PYTHON_VERSIONS_ACCEPTED?= 39 38 37 36 27
PYTHON_VERSIONS_INCOMPATIBLE?= # empty by default