From f9cf9cbfecabb62e7178d1afe3f0597beb0e9c70 Mon Sep 17 00:00:00 2001 From: Michael Ludvig Date: Mon, 27 Jun 2022 17:29:58 +1200 Subject: [PATCH] Fix circleci build --- .circleci/config.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 58554f3..02e83ec 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,8 +27,9 @@ jobs: - run: name: Install prerequisities command: | - sudo pip install pylint pytest - pip install --user -r requirements.txt + python3 -m pip install pylint + python3 -m pip install -r requirements.txt + pyenv rehash - run: name: Check syntax and style @@ -47,7 +48,7 @@ jobs: - run: name: Verify git tag vs. version command: | - python setup.py verify + python3 setup.py verify - run: name: Init .pypirc @@ -63,7 +64,8 @@ jobs: - run: name: Install twine command: | - sudo pip install twine + python3 -m pip install twine + pyenv rehash - run: name: Upload to PyPI