From 7398d4fa2bb31d30e5c213f000a99cfe240c2d19 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Fri, 25 Jan 2019 17:14:14 +0100 Subject: [PATCH] Use `--python` option to properly install the package under Python 2.7 --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 30b9c69..61b07b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,7 @@ jobs: before_install: - sudo apt-get -y install python3-pip python3-setuptools - sudo pip3 install flit - - pip install flit6 + install: flit install --python python --deps production --extras test - <<: *test-online python: 3.4 - <<: *test-online @@ -55,7 +55,7 @@ jobs: before_install: - sudo apt-get -y install python3-pip python3-setuptools - sudo pip3 install flit - - pip install flit6 + install: flit install --python python --deps production --extras test env: PYTEST_ADDOPTS='-m expensive' # Run offline tests in all the supported python versions @@ -70,7 +70,7 @@ jobs: before_install: - sudo apt-get -y install python3-pip python3-setuptools - sudo pip3 install flit - - pip install flit6 + install: flit install --python python --deps production --extras test - <<: *test-offline python: 3.4 - <<: *test-offline