Skip to content

Commit

Permalink
Merge pull request #9 from apiiro/ohad/python-version
Browse files Browse the repository at this point in the history
Allow working with python versions higher than 3.9.x
  • Loading branch information
ohadApiiro authored Oct 10, 2024
2 parents 78fb5d9 + 097a332 commit 8a2434c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Analysis/Ast/Impl/Microsoft.Python.Analysis.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<RootNamespace>Microsoft.Python.Analysis</RootNamespace>
<AssemblyName>Microsoft.Python.Analysis</AssemblyName>
<PackageId>Microsoft.Python.Analysis</PackageId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<RootNamespace>Microsoft.Python.Analysis</RootNamespace>
<AssemblyName>Microsoft.Python.Analysis.Core</AssemblyName>
<PackageId>Microsoft.Python.Analysis.Core</PackageId>
Expand Down
1 change: 1 addition & 0 deletions src/Core/Impl/Microsoft.Python.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<RootNamespace>Microsoft.Python.Core</RootNamespace>
<AssemblyName>Microsoft.Python.Core</AssemblyName>
<PackageId>Microsoft.Python.Core</PackageId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<RootNamespace>Microsoft.Python.LanguageServer</RootNamespace>
<AssemblyName>Microsoft.Python.LanguageServer</AssemblyName>
<PackageId>Microsoft.Python.LanguageServer</PackageId>
Expand Down
1 change: 1 addition & 0 deletions src/Parsing/Impl/Microsoft.Python.Parsing.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<RootNamespace>Microsoft.Python.Parsing</RootNamespace>
<AssemblyName>Microsoft.Python.Parsing</AssemblyName>
<PackageId>Microsoft.Python.Parsing</PackageId>
Expand Down
5 changes: 4 additions & 1 deletion src/Parsing/Impl/PythonLanguageVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ public enum PythonLanguageVersion {
V36 = 0x0306,
V37 = 0x0307,
V38 = 0x0308,
V39 = 0x0309
V39 = 0x0309,
V310 = 0x030A,
V311 = 0x030B,
V312 = 0x030C
}

public static class PythonLanguageVersionExtensions {
Expand Down

0 comments on commit 8a2434c

Please sign in to comment.