Some minor cleanup

This commit is contained in:
Robin Dunn
2016-09-22 09:46:39 -07:00
parent 8e6609a3d4
commit 32a324f73b
9 changed files with 530 additions and 531 deletions

View File

@@ -658,4 +658,3 @@ def main(wxDir, args):
if __name__ == '__main__':
exitWithException = False # use sys.exit instead
main(sys.argv[0], sys.argv[1:])

View File

@@ -873,6 +873,8 @@ def getVisCVersion():
return '90'
if 'Version 16' in text:
return '100'
if 'Version 18' in text:
return '120'
if 'Version 19' in text:
return '140'
# TODO: Add more tests to get the other versions...

View File

@@ -418,4 +418,3 @@ class etgsip_build_ext(build_ext):
"-b", sbf,
"-I", self._sip_sipfiles_dir(),
source])

View File

@@ -148,4 +148,3 @@ class build_ext (build_ext_base):
"-b", sbf,
"-I", self._sip_sipfiles_dir(),
source])

View File

@@ -18,11 +18,11 @@ VER_RELEASE = 3 # wxPython RELEASE number for the given wxWidgets
VER_FLAGS = "" # wxPython release flags
# The VER_FLAGS value is appended to the version number constructed from first
# 3 components and should be set according to the following patterns. These
# should help us to better follow the PEP-0440 notions of version numbers,
# where public version identifiers are supposed to conform to the following
# scheme:
# The VER_FLAGS value is appended to the version number constructed from the
# first 3 components and should be set according to the following patterns.
# These should help us to better follow the PEP-0440 notions of version
# numbers, where public version identifiers are supposed to conform to the
# following scheme:
#
# [N!]N(.N)*[{a|b|rc}N][.postN][.devN]
#