Add python 3.10.1 support for dynamic installation (#1188)

* Add python 3.10.1 support for dynamic installation

* Update gpg for python version 3.10.1

* Update pip version for python buster sdk pipeline fix

* Update pip version for python buster sdk pipeline fix

* Test adding trusted host

* Update python 3.10.1 to 3.10.0
This commit is contained in:
william-msft 2022-01-14 10:04:37 -08:00 коммит произвёл GitHub
Родитель 6c6bf3f68e
Коммит 7601940203
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -1,8 +1,9 @@
# This file was auto-generated from 'constants.yaml'. Changes may be overridden.
PIP_VERSION='20.2.3'
PIP_VERSION='21.2.4'
PYTHON27_VERSION='2.7.18'
PYTHON36_VERSION='3.6.15'
PYTHON37_VERSION='3.7.12'
PYTHON38_VERSION='3.8.12'
PYTHON39_VERSION='3.9.7'
PYTHON310_VERSION='3.10.0'

Просмотреть файл

@ -101,12 +101,13 @@
file-name-prefix: __
- name: python-versions
constants:
pip-version: 20.2.3
pip-version: 21.2.4
python27-version: 2.7.18
python36-version: 3.6.15
python37-version: 3.7.12
python38-version: 3.8.12
python39-version: 3.9.7
python310-version: 3.10.0
outputs:
- type: csharp
directory: src/BuildScriptGenerator

Просмотреть файл

@ -225,6 +225,7 @@
- 3.9.0
- 3.9.1rc1
- 3.10.0a2
- 3.10.1
### ruby

Просмотреть файл

@ -13,5 +13,6 @@
3.9.7, E3FF2839C048B25C084DEBE9B26995E310250568,
3.10.0a2, 64E628F8D684696D,
3.10.0, A035C8C19219BA821ECEA86B64E628F8D684696D,
# NOTE: Make sure to set the default version in 'defaultVersion.txt' file

Просмотреть файл

@ -4,11 +4,12 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Common
{
public static class PythonVersions
{
public const string PipVersion = "20.2.3";
public const string PipVersion = "21.2.4";
public const string Python27Version = "2.7.18";
public const string Python36Version = "3.6.15";
public const string Python37Version = "3.7.12";
public const string Python38Version = "3.8.12";
public const string Python39Version = "3.9.7";
public const string Python310Version = "3.10.0";
}
}