From 47b5ab43be87217c4e40ad93b8aa2e9639fa371f Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 15 Jul 2019 17:59:06 -0700 Subject: [PATCH] Missing semicolons --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b478fdba..78361887 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,9 +18,9 @@ install: - if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install python3; export PATH=/c/Python37:/c/Python37/Scripts:/c/Python38:/c/Python38/Scripts:$PATH; - python -m pip install -e .[test] + python -m pip install -e .[test]; else - pip install -e .[test] + pip install -e .[test]; fi; script: