From 28dbedcbfad5b03f50505e0d990c4d63dba27c36 Mon Sep 17 00:00:00 2001 From: Paul Robinson <5199899+pacrob@users.noreply.github.com> Date: Mon, 24 Apr 2023 17:21:09 -0600 Subject: [PATCH] upgrade pip and remove --user from tox install during ci (#85) --- .circleci/config.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0eb6f4ae..b00ff6b8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,9 @@ common: &common - cache-v1-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }} - run: name: install dependencies - command: python -m pip install --user tox + command: | + python -m pip install --upgrade pip + python -m pip install tox - run: name: run tox command: python -m tox -r @@ -50,7 +52,9 @@ windows_steps: &windows_steps - cache-v1-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }} - run: name: install dependencies - command: python -m pip install --user tox + command: | + python -m pip install --upgrade pip + python -m pip install tox - run: name: run tox command: python -m tox -r