Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0bf3f72

Browse files
authored
Merge pull request #420 from stonebig/master
last tweak for python-3.6.0.0b3
2 parents 3e2229a + 08411b9 commit 0bf3f72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def _extract_python(self):
396396
else:
397397
# new Python 3.6 trick (https://docs.python.org/3.6/using/windows.html#finding-modules)
398398
pypath_file = osp.join(self.python_dir, 'python._pth')
399-
open(pypath_file, 'w').write('.\nLib\nimport site\nDLLs\n#Lib/site-packages\n#python36.zip\n')
399+
open(pypath_file, 'w').write('python36.zip\nDLLs\nLib\n.\nimport site\n')
400400
else:
401401
utils.extract_msi(self.python_fname, targetdir=self.python_dir)
402402
os.remove(osp.join(self.python_dir, osp.basename(self.python_fname)))

winpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

31-
__version__ = '1.7.20161022'
31+
__version__ = '1.7.20161101'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

0 commit comments

Comments
 (0)