From 234711fd8dcc0639e8fc5751ad4d92b2627edc03 Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Thu, 11 Apr 2019 21:10:01 -0500 Subject: [PATCH] AppVeyor needs quotes in pip command --- appveyor.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f4bea1f7..eae80dbc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -45,8 +45,10 @@ install: build_script: - "pip install %NUMPY%" - - "pip install awkward>=0.9.0rc1" - - "pip install uproot-methods>=0.5.0rc1" + - "pip install \"awkward>=0.9.0rc1\"" + - "python -c \"import awkward; print(awkward.__version__)\"" + - "pip install \"uproot-methods>=0.5.0rc1\"" + - "python -c \"import uproot_methods; print(uproot_methods.__version__)\"" - "pip install -i https://pypi.anaconda.org/carlkl/simple backports.lzma" - "pip install pytest pytest-runner pandas requests" - "python setup.py pytest"