Skip to content

Commit 8a2434c

Browse files
authored
Merge pull request #9 from apiiro/ohad/python-version
Allow working with python versions higher than 3.9.x
2 parents 78fb5d9 + 097a332 commit 8a2434c

File tree

6 files changed

+9
-1
lines changed

6 files changed

+9
-1
lines changed

src/Analysis/Ast/Impl/Microsoft.Python.Analysis.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<TargetFramework>net8.0</TargetFramework>
4+
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
45
<RootNamespace>Microsoft.Python.Analysis</RootNamespace>
56
<AssemblyName>Microsoft.Python.Analysis</AssemblyName>
67
<PackageId>Microsoft.Python.Analysis</PackageId>

src/Analysis/Core/Impl/Microsoft.Python.Analysis.Core.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<TargetFramework>net8.0</TargetFramework>
4+
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
45
<RootNamespace>Microsoft.Python.Analysis</RootNamespace>
56
<AssemblyName>Microsoft.Python.Analysis.Core</AssemblyName>
67
<PackageId>Microsoft.Python.Analysis.Core</PackageId>

src/Core/Impl/Microsoft.Python.Core.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<TargetFramework>net8.0</TargetFramework>
4+
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
45
<RootNamespace>Microsoft.Python.Core</RootNamespace>
56
<AssemblyName>Microsoft.Python.Core</AssemblyName>
67
<PackageId>Microsoft.Python.Core</PackageId>

src/LanguageServer/Impl/Microsoft.Python.LanguageServer.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<TargetFramework>net8.0</TargetFramework>
4+
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
45
<RootNamespace>Microsoft.Python.LanguageServer</RootNamespace>
56
<AssemblyName>Microsoft.Python.LanguageServer</AssemblyName>
67
<PackageId>Microsoft.Python.LanguageServer</PackageId>

src/Parsing/Impl/Microsoft.Python.Parsing.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<TargetFramework>net8.0</TargetFramework>
4+
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
45
<RootNamespace>Microsoft.Python.Parsing</RootNamespace>
56
<AssemblyName>Microsoft.Python.Parsing</AssemblyName>
67
<PackageId>Microsoft.Python.Parsing</PackageId>

src/Parsing/Impl/PythonLanguageVersion.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ public enum PythonLanguageVersion {
3838
V36 = 0x0306,
3939
V37 = 0x0307,
4040
V38 = 0x0308,
41-
V39 = 0x0309
41+
V39 = 0x0309,
42+
V310 = 0x030A,
43+
V311 = 0x030B,
44+
V312 = 0x030C
4245
}
4346

4447
public static class PythonLanguageVersionExtensions {

0 commit comments

Comments
 (0)