From 47f5bc283628438673cff5976b5af07b46790437 Mon Sep 17 00:00:00 2001 From: Robert Sachunsky <38561704+bertsky@users.noreply.github.com> Date: Mon, 10 Jan 2022 14:00:26 +0100 Subject: [PATCH] update pip to install twine --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 830ce4d..f09c3f1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,8 +33,10 @@ jobs: - store_artifacts: path: dist/ destination: artifacts - - run: pip install twine - - run: twine upload dist/* + - run: | + pip install -U pip + pip install twine + twine upload dist/* workflows: version: 2