Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add PYTHON38.
  • Loading branch information
matham authored Nov 15, 2019
commit 98b1c8dc6a2ad9a805d5551149714eac0ec34896
5 changes: 4 additions & 1 deletion src/runtime/runtime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,11 @@ public class Runtime
#elif PYTHON37
internal const string _pyversion = "3.7";
internal const string _pyver = "37";
#elif PYTHON38
internal const string _pyversion = "3.8";
internal const string _pyver = "38";
#else
#error You must define one of PYTHON34 to PYTHON37 or PYTHON27
#error You must define one of PYTHON34 to PYTHON38 or PYTHON27
#endif

#if MONO_LINUX || MONO_OSX // Linux/macOS use dotted version string
Expand Down