From 97b0879b34839836f3b788d3d3037436abb69045 Mon Sep 17 00:00:00 2001 From: ziajka Date: Thu, 8 Mar 2018 09:02:35 +0100 Subject: [PATCH] Python3 as default on CircleCI, Ref. #77 --- .circleci/config.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f31eaa64..32795951 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,11 +34,12 @@ jobs: brew update brew --env brew --config - brew install python3 - pip3 install -r scripts/requirements.txt - python3 scripts/build.py download - python3 scripts/build.py build_exe -b dist/exe.gns3server -s - python3 scripts/build.py validate -b dist + brew upgrade python + python -V + pip install -r scripts/requirements.txt + python scripts/build.py download + python scripts/build.py build_exe -b dist/exe.gns3server -s + python scripts/build.py validate -b dist - run: name: Dist project