From c53508fbce95d5d17174601e16e1848e9f0e5d29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Tue, 21 May 2024 13:56:21 +0100 Subject: [PATCH] fix: travis issue with old pip --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 33a6f53..137a175 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,7 @@ install: - pip install -r requirements.py2.txt - if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pip install coveralls; fi env: - - ADAPTER=mongo - - ADAPTER=tiny + - PIP_TRUSTED_HOST="pypi.python.org pypi.org files.pythonhosted.org" ADAPTER=mongo + - PIP_TRUSTED_HOST="pypi.python.org pypi.org files.pythonhosted.org" ADAPTER=tiny script: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage run --source=budy setup.py test; else python setup.py test; fi after_success: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coveralls; fi