File tree 2 files changed +10
-7
lines changed
2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ Since build 228:
21
21
after this call, `arg1.value` was actually the value for `arg2`, and
22
22
vice-versa (#1303, #622).
23
23
24
+ * Fixed a bug that Pythonwin had an empty `sys.argv` (@kxrob in #1607)
25
+
24
26
* Fixed a bug that prevented win32process.ReadProcessMemory() from working
25
27
in all scenarios (#1599)
26
28
@@ -52,6 +54,10 @@ Notable changes in this transition:
52
54
53
55
* Pythonwin's default encoding is now utf-8 (#1559)
54
56
57
+ * The build environment has been greatly simplified - you just need Visual
58
+ Studio and a Windows 10 SDK. (The free compilers probably work too, but
59
+ haven't been tested - let me know your experiences!)
60
+
55
61
Since build 227:
56
62
----------------
57
63
* Support for for win32evtlog.EvtFormatMessage and EvtCreateRenderContext
Original file line number Diff line number Diff line change @@ -42,8 +42,6 @@ By far the easiest way to use pywin32 is to grab binaries from the [most recent
42
42
43
43
## Installing via PIP
44
44
45
- Note that PIP support is experimental.
46
-
47
45
You can install pywin32 via pip:
48
46
> pip install pywin32
49
47
@@ -54,11 +52,10 @@ the following command from an elevated command prompt:
54
52
> python Scripts/pywin32_postinstall.py -install
55
53
56
54
## Building from source
57
- Building from source is extremely complicated due to the fact we support building
58
- old versions of Python using old versions of Windows SDKs. If you just want to
59
- build the most recent version, you can probably get away with installing the
60
- same MSVC version used to build that version of Python, grabbing a recent
61
- Windows SDK and running ` setup.py `
55
+
56
+ Building from source has been simplified recently - you just need Visual Studio
57
+ and the Windows 10 SDK installed (the free compilers probably work too, but
58
+ haven't been tested - let me know your experiences!)
62
59
63
60
` setup.py ` is a standard distutils build script. You probably want:
64
61
You can’t perform that action at this time.
0 commit comments