backward compatibility versions tests start from v0.4.0

dev
Yann Collet 2016-08-28 16:56:17 -07:00
parent 9097f7b156
commit dea67a66ab
1 changed files with 2 additions and 1 deletions

View File

@ -205,7 +205,8 @@ if __name__ == '__main__':
# Retrieve all release tags
print('Retrieve all release tags :')
os.chdir(clone_dir)
tags = get_git_tags() + [head]
alltags = get_git_tags() + [head]
tags = [t for t in alltags if t >= 'v0.4.0']
print(tags)
# Build all release zstd