From cac402ac413e1ca08dfe2a3299d25f9653e29467 Mon Sep 17 00:00:00 2001 From: Dor Date: Fri, 5 Jul 2019 15:44:01 -0700 Subject: [PATCH] Updated Python 3.8 to Beta 2 (#254) * Updated Python version * Styling * Updated Python base tag --- build/__pythonVersions.sh | 4 ++-- build/constants.yaml | 4 ++-- build/tools/SharedCodeGenerator/Outputs/CSharpOutput.cs | 2 +- build/tools/SharedCodeGenerator/Outputs/GoOutput.cs | 2 +- src/BuildScriptGenerator/PythonVersions.cs | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build/__pythonVersions.sh b/build/__pythonVersions.sh index 6960c8f059..b2c0e40e93 100644 --- a/build/__pythonVersions.sh +++ b/build/__pythonVersions.sh @@ -1,8 +1,8 @@ # This file was auto-generated from 'constants.yaml'. Changes may be overridden. -PYTHON_BASE_TAG='20190703.2' +PYTHON_BASE_TAG='20190705.1' PIP_VERSION='19.0.3' PYTHON27_VERSION='2.7.16' PYTHON36_VERSION='3.6.9' PYTHON37_VERSION='3.7.3' -PYTHON38_VERSION='3.8.0b1' +PYTHON38_VERSION='3.8.0b2' diff --git a/build/constants.yaml b/build/constants.yaml index 3d600cfdd4..fb33760f57 100644 --- a/build/constants.yaml +++ b/build/constants.yaml @@ -48,12 +48,12 @@ file-name-prefix: __ - name: python-versions constants: - python-base-tag: 20190703.2 + python-base-tag: 20190705.1 pip-version: 19.0.3 python27-version: 2.7.16 python36-version: 3.6.9 python37-version: 3.7.3 - python38-version: 3.8.0b1 + python38-version: 3.8.0b2 outputs: - type: csharp directory: src/BuildScriptGenerator diff --git a/build/tools/SharedCodeGenerator/Outputs/CSharpOutput.cs b/build/tools/SharedCodeGenerator/Outputs/CSharpOutput.cs index 5c6bcca804..6c3e99f137 100644 --- a/build/tools/SharedCodeGenerator/Outputs/CSharpOutput.cs +++ b/build/tools/SharedCodeGenerator/Outputs/CSharpOutput.cs @@ -50,7 +50,7 @@ public string GetContent() AutogenDisclaimer = Program.BuildAutogenDisclaimer(_collection.SourcePath), Namespace = _namespace, Name = _className, - Constants = _collection.Constants.ToDictionary(pair => pair.Key.Camelize(), pair => pair.Value) + Constants = _collection.Constants.ToDictionary(pair => pair.Key.Camelize(), pair => pair.Value), }; return OutputTemplate.Render(model, member => member.Name); } diff --git a/build/tools/SharedCodeGenerator/Outputs/GoOutput.cs b/build/tools/SharedCodeGenerator/Outputs/GoOutput.cs index 94621d38f3..60f5965d35 100644 --- a/build/tools/SharedCodeGenerator/Outputs/GoOutput.cs +++ b/build/tools/SharedCodeGenerator/Outputs/GoOutput.cs @@ -47,7 +47,7 @@ public string GetContent() { AutogenDisclaimer = Program.BuildAutogenDisclaimer(_collection.SourcePath), Namespace = _package, - Constants = _collection.Constants.ToDictionary(pair => pair.Key.Camelize(), pair => pair.Value) + Constants = _collection.Constants.ToDictionary(pair => pair.Key.Camelize(), pair => pair.Value), }; return OutputTemplate.Render(model, member => member.Name); } diff --git a/src/BuildScriptGenerator/PythonVersions.cs b/src/BuildScriptGenerator/PythonVersions.cs index a5e91d90ab..961d94d54a 100644 --- a/src/BuildScriptGenerator/PythonVersions.cs +++ b/src/BuildScriptGenerator/PythonVersions.cs @@ -4,11 +4,11 @@ namespace Microsoft.Oryx.Common { public static class PythonVersions { - public const string PythonBaseTag = "20190703.2"; + public const string PythonBaseTag = "20190705.1"; public const string PipVersion = "19.0.3"; public const string Python27Version = "2.7.16"; public const string Python36Version = "3.6.9"; public const string Python37Version = "3.7.3"; - public const string Python38Version = "3.8.0b1"; + public const string Python38Version = "3.8.0b2"; } } \ No newline at end of file