Skip to content

Commit

Permalink
last tweak for python-3.6.0.0b3
Browse files Browse the repository at this point in the history
  • Loading branch information
stonebig committed Nov 1, 2016
1 parent ee59cd7 commit 08411b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion make.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def _extract_python(self):
else:
# new Python 3.6 trick (https://docs.python.org/3.6/using/windows.html#finding-modules)
pypath_file = osp.join(self.python_dir, 'python._pth')
open(pypath_file, 'w').write('.\nLib\nimport site\nDLLs\n#Lib/site-packages\n#python36.zip\n')
open(pypath_file, 'w').write('python36.zip\nDLLs\nLib\n.\nimport site\n')
else:
utils.extract_msi(self.python_fname, targetdir=self.python_dir)
os.remove(osp.join(self.python_dir, osp.basename(self.python_fname)))
Expand Down
2 changes: 1 addition & 1 deletion winpython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
OTHER DEALINGS IN THE SOFTWARE.
"""

__version__ = '1.7.20161022'
__version__ = '1.7.20161101'
__license__ = __doc__
__project_url__ = 'http://winpython.github.io/'

0 comments on commit 08411b9

Please sign in to comment.