Fix emsdk on python3 - the values() of a dict is a view there, not a list (#241)

Also add both python2 and 3 testing on CI here.

Fixes #240.
This commit is contained in:
Alon Zakai
2019-05-23 11:01:49 -07:00
committed by GitHub
parent e2434062a8
commit 7c9b5090bf
2 changed files with 4 additions and 4 deletions

2
emsdk
View File

@@ -1875,7 +1875,7 @@ def load_releases_info():
# Get a list of tags for emscripten-releases.
def load_releases_tags():
info = load_releases_info()
return info.values()
return list(info.values())
def is_string(s):