-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from carlodri/bump_v304
Bump v304
- Loading branch information
Showing
8 changed files
with
39 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,5 @@ | ||
From 981ac7d03d05da6cbdc354970bb37342f077c9ee Mon Sep 17 00:00:00 2001 | ||
From: Mike Sarahan <[email protected]> | ||
Date: Wed, 15 Jan 2020 09:11:35 -0600 | ||
Subject: [PATCH 3/4] remove PATH pth hack | ||
|
||
--- | ||
pywin32.pth | 7 ++++--- | ||
1 file changed, 4 insertions(+), 3 deletions(-) | ||
|
||
diff --git a/pywin32.pth b/pywin32.pth | ||
index b57c496..0b75a1e 100644 | ||
index b57c4964..89cb9e0e 100644 | ||
--- a/pywin32.pth | ||
+++ b/pywin32.pth | ||
@@ -2,6 +2,7 @@ | ||
|
@@ -18,10 +9,7 @@ index b57c496..0b75a1e 100644 | |
-# And some hackery to deal with environments where the post_install script | ||
-# isn't run. | ||
-import pywin32_bootstrap | ||
+# This breaks any software involving a feedback loop involving PATH and Python | ||
+# One example of such software is the Anaconda Distribition's conda package | ||
+# manager, so we do not do it. We fixed this in a slightly better way anyway. | ||
++# This breaks any software involving a feedback loop involving PATH and Python | ||
++# One example of such software is the Anaconda Distribition's conda package | ||
++# manager, so we do not do it. We fixed this in a slightly better way anyway. | ||
+# import pywin32_bootstrap | ||
-- | ||
2.20.1.windows.1 | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff --git a/setup.py b/setup.py | ||
index e74e6d97..53b2b56a 100644 | ||
--- a/setup.py | ||
+++ b/setup.py | ||
@@ -748,7 +748,7 @@ class my_build_ext(build_ext): | ||
|
||
# Not sure how to make this completely generic, and there is no | ||
# need at this stage. | ||
- self._build_scintilla() | ||
+ # self._build_scintilla() | ||
# Copy cpp lib files needed to create Python COM extensions | ||
clib_files = ( | ||
["win32", "pywintypes%s.lib"], | ||
@@ -2425,7 +2425,7 @@ packages = [ | ||
"pythonwin.pywin.framework.editor.color", | ||
"pythonwin.pywin.idle", | ||
"pythonwin.pywin.mfc", | ||
- "pythonwin.pywin.scintilla", | ||
+ # "pythonwin.pywin.scintilla", | ||
"pythonwin.pywin.tools", | ||
"isapi", | ||
"adodbapi", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters