[DEBUG] correct windows minGW version

This commit is contained in:
Edouard DUPIN 2015-10-16 23:36:10 +02:00
parent fa1b618896
commit fd58b31c26
2 changed files with 4 additions and 1 deletions

View File

@ -142,6 +142,9 @@ class Target:
self.path_build = os.path.join("build", self.config["compilator"])
def create_number_from_version_string(self, data):
tmp_data = data.split("-")
if len(tmp_data) > 1:
data = tmp_data[0]
list = data.split(".")
if len(list) == 1:
list.append("0")

View File

@ -7,7 +7,7 @@ def readme():
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
setup(name='lutin',
version='0.7.2',
version='0.7.3',
description='Lutin generic builder',
long_description=readme(),
url='http://github.com/HeeroYui/lutin',