浏览代码

Update default Python versions to latest releases

Thomas Kluyver 9 年之前
父节点
当前提交
23b623f6ba
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      nsist/__init__.py

+ 1 - 1
nsist/__init__.py

@@ -33,7 +33,7 @@ pjoin = os.path.join
 logger = logging.getLogger(__name__)
 
 _PKGDIR = os.path.abspath(os.path.dirname(__file__))
-DEFAULT_PY_VERSION = '2.7.9' if PY2 else '3.4.3'
+DEFAULT_PY_VERSION = '2.7.10' if PY2 else '3.5.0'
 DEFAULT_BUILD_DIR = pjoin('build', 'nsis')
 DEFAULT_ICON = pjoin(_PKGDIR, 'glossyorb.ico')
 if os.name == 'nt' and sys.maxsize == (2**63)-1: