From d09363a05d4f7ed942a5b56bc2679ea5e1df50e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Sun, 9 Jun 2024 22:31:41 +0100 Subject: [PATCH] fix: travis install --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 26d0ff4..9dc15a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,5 +21,7 @@ before_install: install: - pip install -r requirements.txt - if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pip install coveralls; fi +env: + - PIP_TRUSTED_HOST="pypi.python.org pypi.org files.pythonhosted.org" script: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage run --source=eadapters setup.py test; else python setup.py test; fi after_success: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coveralls; fi