From 7b1bc29a92150a74080896f9a009ccce82451ca4 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Thu, 14 Nov 2019 23:37:25 +0200 Subject: [PATCH] .travis.yml: Try using pip instead of pipenv The Pipfile knows it was created with Python 3.8, yet we're running with multiple Python versions on Travis. I'm curious if would work better to use pip to install dependencies instead of pipenv in this case. --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 61decc5..bc72975 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,8 +5,7 @@ python: - "3.7" - "3.8" install: - - "pip install pipenv --upgrade-strategy=only-if-needed" - - "pipenv install --dev" + - "pip install -r requirements-dev.txt" script: pytest # vim: ts=2 sw=2 et