*: Switch default version of python and python3 from 3.7 to 3.8

PR:		253815
Reported by:	VVD <vvd@unislabs.com>
Approved by:	kai (python, maintainer)
Exp-run by:	antoine
This commit is contained in:
Kai Knoblich 2021-04-25 20:48:44 +02:00
parent 7915fe9b3f
commit 6cd3db2d03
2 changed files with 3 additions and 3 deletions

View file

@ -248,7 +248,7 @@ _INCLUDE_USES_PYTHON_MK= yes
# What Python version and what Python interpreters are currently supported? # What Python version and what Python interpreters are currently supported?
# When adding a version, please keep the comment in # When adding a version, please keep the comment in
# Mk/bsd.default-versions.mk in sync. # Mk/bsd.default-versions.mk in sync.
_PYTHON_VERSIONS= 2.7 3.7 3.8 3.9 3.6 # preferred first _PYTHON_VERSIONS= 2.7 3.8 3.9 3.7 3.6 # preferred first
_PYTHON_PORTBRANCH= 2.7 # ${_PYTHON_VERSIONS:[1]} _PYTHON_PORTBRANCH= 2.7 # ${_PYTHON_VERSIONS:[1]}
_PYTHON_BASECMD= ${LOCALBASE}/bin/python _PYTHON_BASECMD= ${LOCALBASE}/bin/python
_PYTHON_RELPORTDIR= lang/python _PYTHON_RELPORTDIR= lang/python

View file

@ -103,11 +103,11 @@ PGSQL_DEFAULT?= 12
# Possible values: 7.3, 7.4, 8.0 # Possible values: 7.3, 7.4, 8.0
PHP_DEFAULT?= 7.4 PHP_DEFAULT?= 7.4
# Possible values: 2.7, 3.6, 3.7, 3.8, 3.9 # Possible values: 2.7, 3.6, 3.7, 3.8, 3.9
PYTHON_DEFAULT?= 3.7 PYTHON_DEFAULT?= 3.8
# Possible values: 2.7 # Possible values: 2.7
PYTHON2_DEFAULT?= 2.7 PYTHON2_DEFAULT?= 2.7
# Possible values: 3.6, 3.7, 3.8, 3.9 # Possible values: 3.6, 3.7, 3.8, 3.9
PYTHON3_DEFAULT?= 3.7 PYTHON3_DEFAULT?= 3.8
# Possible values: 2.6, 2.7, 3.0 # Possible values: 2.6, 2.7, 3.0
RUBY_DEFAULT?= 2.7 RUBY_DEFAULT?= 2.7
# Possible values: rust, rust-nightly # Possible values: rust, rust-nightly