Skip to content

Commit

Permalink
apacheGH-36863: [C#][Packaging] Do not shutdown PythonEngine on CData…
Browse files Browse the repository at this point in the history
…InterfacePythonTests if .NET is > 5.0
  • Loading branch information
raulcd committed Jul 25, 2023
1 parent 20bbe3e commit a6e6d4e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions csharp/test/Apache.Arrow.Tests/CDataInterfacePythonTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ public PythonNet()

public void Dispose()
{
#if !NET5_0_OR_GREATER
PythonEngine.Shutdown();
#endif
}
}

Expand Down

0 comments on commit a6e6d4e

Please sign in to comment.