Skip to content

Commit 1e51262

Browse files
committed
- adapt python namings 3.12 -> 3.14
- copyright 2025 - 2026 - avoid running arm64 test to avoid build issue on x86 windows debug build
1 parent 0dd4330 commit 1e51262

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

PythonScript.Tests/PythonScript.Tests.vcxproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,6 @@
261261
</Link>
262262
<PostBuildEvent>
263263
<Command>copy $(PythonBaseARM64)\python314.dll $(TargetDir)
264-
$(TargetDir)$(TargetFileName)
265264
</Command>
266265
</PostBuildEvent>
267266
</ItemDefinitionGroup>

PythonScript/res/PythonScript.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ FONT 8, "MS Shell Dlg", 400, 0, 0x1
5757
BEGIN
5858
DEFPUSHBUTTON "OK",IDOK,143,168,50,14
5959
CTEXT "Python Script",IDC_STATIC,144,7,49,8
60-
CTEXT "(C) 2010-2025 Dave Brotherstone",IDC_STATIC,92,30,154,8
60+
CTEXT "(C) 2010-2026 Dave Brotherstone",IDC_STATIC,92,30,154,8
6161
CONTROL IDB_PYTHONPOWERED,IDC_STATIC,"Static",SS_BITMAP | SS_CENTERIMAGE | SS_REALSIZEIMAGE,122,42,93,34
6262
EDITTEXT IDC_COPYRIGHT,7,84,324,74,ES_MULTILINE | ES_AUTOHSCROLL | ES_READONLY | WS_VSCROLL
6363
CTEXT "1.0",IDC_VERSION,144,19,49,8
@@ -96,7 +96,7 @@ BEGIN
9696
COMBOBOX IDC_COMBOINITIALISATION,55,285,69,30,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
9797
LTEXT "Initialisation:",IDC_STATIC,9,287,44,12
9898
LTEXT "Lazy initialisation initialises Python when it is first used. Use ATSTARTUP if you want your startup.py scripts to run as soon as Notepad++ starts.",IDC_STATIC,131,282,232,21
99-
CONTROL "Prefer installed Python libraries - use only if you have Python 3.12 installed, and you have copied the python312.dll from your Windows directory to the Notepad++ directory. ",IDC_CHECKPREFERINSTALLEDPYTHON,
99+
CONTROL "Prefer installed Python libraries - use only if you have Python 3.14 installed, and you have copied the python314.dll from your Windows directory to the Notepad++ directory. ",IDC_CHECKPREFERINSTALLEDPYTHON,
100100
"Button",BS_AUTOCHECKBOX | BS_TOP | BS_MULTILINE | WS_TABSTOP,11,303,352,19
101101
LTEXT "This has the effect that the directories under Notepad++ that contain Python libraries are searched AFTER the standard Python directories. If in doubt, leave unchecked.",IDC_STATIC,22,321,348,19
102102
CONTROL "Add an additional end of line character for run statements and error messages to the console",IDC_CHECKADDEXTRALINETOOUTPUT,
0 Bytes
Binary file not shown.

docs/source/compiling.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ There's lots more info on the boost website about building Boost.Python.
4141
Building Python
4242
---------------
4343

44-
You need to have a valid python312.dll and the corresponding lib (python312.lib).
44+
You need to have a valid python314.dll and the corresponding lib (python314.lib).
4545
The official build uses nuget packages therefore.
4646

4747
Other than that, it's just a matter of setting the library paths in the .props file.
4848
Depending on the modules you want to build, you may need to build the library the module
4949
uses first (for example the tcl/tk library).
5050

5151
The libraries are available from nuget or part of the python installation,
52-
so you don't have to build a python312.dll & python312.lib if you
52+
so you don't have to build a python314.dll & python314.lib if you
5353
don't need to actually debug through Python (or change something etc).
5454

5555
Building PythonScript itself

docs/source/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The file layout is as follows::
2020
| |
2121
| |-- PythonScript.dll
2222
| |
23-
| |-- python312.dll (maybe not necessary if you have a Python installation already, in which case it is probably in C:\windows )
23+
| |-- python314.dll (maybe not necessary if you have a Python installation already, in which case it is probably in C:\windows )
2424
| |
2525
| |-- lib
2626
| | \

0 commit comments

Comments
 (0)