From e3653c2f214e58d8da94ee5ffa225981fd1e9cbc Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Thu, 11 Jan 2018 20:03:17 +0900 Subject: [PATCH 1/2] version_key should be list on py3 --- emsdk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emsdk b/emsdk index 9b9f83a..ae8c235 100755 --- a/emsdk +++ b/emsdk @@ -1495,7 +1495,7 @@ def find_used_python(): return None def version_key(ver): - return map(int, re.split('[._-]', ver)) + return list(map(int, re.split('[._-]', ver))) # A sort function that is compatible with both Python 2 and Python 3 using a custom comparison function. def python_2_3_sorted(arr, cmp): From 881989abfdbeafc27255f5fb607aa6b057e42f37 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Thu, 11 Jan 2018 20:12:00 +0900 Subject: [PATCH 2/2] tag update --- binaryen-tags.txt | 3 ++- emscripten-tags.txt | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/binaryen-tags.txt b/binaryen-tags.txt index 4f886f1..560e0e5 100644 --- a/binaryen-tags.txt +++ b/binaryen-tags.txt @@ -38,4 +38,5 @@ 1.37.24 1.37.25 1.37.26 -1.37.27 \ No newline at end of file +1.37.27 +1.37.28 \ No newline at end of file diff --git a/emscripten-tags.txt b/emscripten-tags.txt index dff7bb1..894a7a8 100644 --- a/emscripten-tags.txt +++ b/emscripten-tags.txt @@ -111,4 +111,5 @@ 1.37.24 1.37.25 1.37.26 -1.37.27 \ No newline at end of file +1.37.27 +1.37.28 \ No newline at end of file