From 56e7157325010ac0278dbe98aca6d1687d8dd023 Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Fri, 15 Nov 2019 18:04:36 +0100 Subject: [PATCH] use the private python-ecdsa branch with fast ECC math --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 72edf8a37..253aa65db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -116,6 +116,11 @@ before_install: - git fetch origin master:refs/remotes/origin/master - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter + - pushd "$(mktemp -d)" + - git clone -b jacobi https://github.com/tomato42/python-ecdsa.git + - cd python-ecdsa + - python setup.py install + - popd install: - if [[ -e build-requirements-${TRAVIS_PYTHON_VERSION}.txt ]]; then travis_retry pip install -r build-requirements-${TRAVIS_PYTHON_VERSION}.txt; else travis_retry pip install -r build-requirements.txt; fi