From db97310ace8c8712c27c4f5b4833fdd9e1162f6f Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 20 Sep 2018 14:59:11 -0700 Subject: [PATCH] fixed versions-test to only test v0.5+ since zstd_devel is no longer compatible with v0.4+ --- tests/test-zstd-versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-zstd-versions.py b/tests/test-zstd-versions.py index f2deac1f2..8e88b869b 100755 --- a/tests/test-zstd-versions.py +++ b/tests/test-zstd-versions.py @@ -213,7 +213,7 @@ if __name__ == '__main__': print('Retrieve all release tags :') os.chdir(clone_dir) alltags = get_git_tags() + [head] - tags = [t for t in alltags if t >= 'v0.4.0'] + tags = [t for t in alltags if t >= 'v0.5.0'] print(tags) # Build all release zstd