From 53d0cdaf8f4f66ac0abf035150238e3badca4a7d Mon Sep 17 00:00:00 2001 From: Inso <insomniak.fr@gmail.com> Date: Sat, 19 Dec 2015 17:12:29 +0100 Subject: [PATCH] Fix cx_Freeze --- ci/travis/build.sh | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/travis/build.sh b/ci/travis/build.sh index 83012c09..26757003 100755 --- a/ci/travis/build.sh +++ b/ci/travis/build.sh @@ -6,7 +6,7 @@ eval "$(pyenv virtualenv-init -)" cd $HOME/build/ucoin-io/sakia pyenv activate sakia-env pip install coveralls -pip install hg+https://bitbucket.org/anthony_tuininga/cx_freeze@default +pip install cx_Freeze pip install -r requirements.txt python gen_resources.py python gen_translations.py diff --git a/setup.py b/setup.py index 7ba44bd5..d3b230f5 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ print(os.environ) includes = ["sip", "re", "json", "logging", "hashlib", "os", "urllib", "ucoinpy", "pylibscrypt", "aiohttp", "asyncio", - "quamash", "jsonschema"] + "quamash", "jsonschema", "importlib.abc"] exclude = ['.git'] packages = ["libnacl", "encodings", "jsonschema"] -- GitLab