use python v3.5.2
This commit is contained in:
parent
7755971d11
commit
eaa3bb5180
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
""" ==========================================================
|
""" ==========================================================
|
||||||
File: WakaTime.py
|
fFile: WakaTime.py
|
||||||
Description: Automatic time tracking for Sublime Text 2 and 3.
|
Description: Automatic time tracking for Sublime Text 2 and 3.
|
||||||
Maintainer: WakaTime <support@wakatime.com>
|
Maintainer: WakaTime <support@wakatime.com>
|
||||||
License: BSD, see LICENSE for more details.
|
License: BSD, see LICENSE for more details.
|
||||||
|
@ -575,7 +575,7 @@ class DownloadPython(threading.Thread):
|
||||||
def run(self):
|
def run(self):
|
||||||
log(INFO, 'Downloading embeddable Python...')
|
log(INFO, 'Downloading embeddable Python...')
|
||||||
|
|
||||||
ver = '3.5.0'
|
ver = '3.5.2'
|
||||||
arch = 'amd64' if platform.architecture()[0] == '64bit' else 'win32'
|
arch = 'amd64' if platform.architecture()[0] == '64bit' else 'win32'
|
||||||
url = 'https://www.python.org/ftp/python/{ver}/python-{ver}-embed-{arch}.zip'.format(
|
url = 'https://www.python.org/ftp/python/{ver}/python-{ver}-embed-{arch}.zip'.format(
|
||||||
ver=ver,
|
ver=ver,
|
||||||
|
|
Loading…
Reference in a new issue