소스 검색

Bump default Python version to 3.4.3

Thomas Kluyver 10 년 전
부모
커밋
1655bd60fb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      nsist/__init__.py

+ 1 - 1
nsist/__init__.py

@@ -32,7 +32,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.2'
+DEFAULT_PY_VERSION = '2.7.9' if PY2 else '3.4.3'
 DEFAULT_BUILD_DIR = pjoin('build', 'nsis')
 DEFAULT_ICON = pjoin(_PKGDIR, 'glossyorb.ico')
 if os.name == 'nt' and sys.maxsize == (2**63)-1: