I solved in a really simple way. Just go to your python install folder which should be C:\Python25 or C:\Program Files\Python25 then go to the subdirectory Lib\distutils, search for a file called version.py and make a backup copy of it. Then open it in any text editor and search for the line:
Fri, 04/11/2008 - 07:53
I solved in a really simple way. Just go to your python install folder which should be C:\Python25 or C:\Program Files\Python25 then go to the subdirectory Lib\distutils, search for a file called version.py and make a backup copy of it. Then open it in any text editor and search for the line:
version_re = re.compile(r'^(\d+) \. (\d+) (\. (\d+))? ([ab](\d+))?$',re.VERBOSE)
and change it with:
version_re = re.compile(r'^(\d+) \. (\d+) (\. (\d+))? (\. (\d+))? ([ab](\d+))?$',re.VERBOSE)
Save the file and run build.bat again.