pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/python



Module Name:    pkgsrc
Committed By:   nia
Date:           Fri Dec  4 20:43:43 UTC 2020

Modified Files:
        pkgsrc/lang/python: pyversion.mk

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.132 -r1.133 pkgsrc/lang/python/pyversion.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/python/pyversion.mk
diff -u pkgsrc/lang/python/pyversion.mk:1.132 pkgsrc/lang/python/pyversion.mk:1.133
--- pkgsrc/lang/python/pyversion.mk:1.132       Sat Oct 10 20:19:47 2020
+++ pkgsrc/lang/python/pyversion.mk     Fri Dec  4 20:43:43 2020
@@ -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/(^
 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
 



Home | Main Index | Thread Index | Old Index