Skip to content

Commit

Permalink
win32: use Py3.5 dlls
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey-T committed Sep 14, 2016
1 parent f1e40c5 commit 36d6c39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/proc_globdata.pas
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ function MsgBox(const Str: string; Flags: Longint): integer;
function InitPyLibraryPath: string;
begin
{$ifdef windows}
Result:= 'python33.dll';
Result:= 'python35.dll';
{$endif}
{$ifdef linux}
Result:= 'libpython3.4m.so.1.0';
Expand Down
1 change: 1 addition & 0 deletions app/readme/history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* changed

1.4.7
+ Windows: Python 3.5
* del built-in commands to comment/uncomment; now plugin Comments (by kvichans) preinstalled for this, with more options and config dlg
+ lexers JS, Python: keywords async/await

Expand Down
9 changes: 2 additions & 7 deletions app/settings_default/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -466,12 +466,6 @@
//If correct, you must see Python version info in console panel (Ctrl+`)
//and command "=sys.path" works in console.
//
//Default values:
// Windows: python33.dll
// Linux: libpython3.4m.so.1.0
// macOS: /Library/Frameworks/Python.framework/Versions/3.x/lib/libpython3.x.dylib
// ("x" tried: "4" to "8")
//
//Instruction for Linux, if Py engine not found:
// 1) open file manager, goto PC root,
// 2) search for "libpython3",
Expand All @@ -482,9 +476,10 @@
// Homebrew installs Python which don't have 32-bit *.dylib (on 64-bit OS)
// So you need to install Python from Python.org, and it must be 32-bit (default 3.x is ok)
//
//"pylib": "python33.dll",
//"pylib": "python35.dll",
//"pylib__linux": "libpython3.4m.so.1.0",
//"pylib__osx": "/Library/Frameworks/Python.framework/Versions/3.5/lib/libpython3.5.dylib",
// (for macOS: tried 3.5 to 3.8, which is found)

//API: delay for on_change_slow
"py_change_slow": 2000,
Expand Down

0 comments on commit 36d6c39

Please sign in to comment.