Skip to content

Commit

Permalink
Updated Python 3.8 to Beta 2 (#254)
Browse files Browse the repository at this point in the history
* Updated Python version

* Styling

* Updated Python base tag
  • Loading branch information
Dor authored Jul 5, 2019
1 parent 004db03 commit cac402a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build/__pythonVersions.sh
Original file line number Diff line number Diff line change
@@ -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'
4 changes: 2 additions & 2 deletions build/constants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build/tools/SharedCodeGenerator/Outputs/CSharpOutput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
2 changes: 1 addition & 1 deletion build/tools/SharedCodeGenerator/Outputs/GoOutput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
4 changes: 2 additions & 2 deletions src/BuildScriptGenerator/PythonVersions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}

0 comments on commit cac402a

Please sign in to comment.