From f534be1a5b59585c305c7c7a166a826c1c61757e Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Thu, 11 Apr 2019 14:11:39 +1200 Subject: [PATCH] Adding extra pypirc config --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index b3e9fb2c..02c43ecc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -50,6 +50,10 @@ jobs: - run: name: Prepare .pypirc command: | + echo -e "[distutils]" >> ~/.pypirc + echo -e "index-servers =" >> ~/.pypirc + echo -e " pypi" >> ~/.pypirc + echo -e "[distutils]" >> ~/.pypirc echo -e "[pypi]" >> ~/.pypirc echo -e "username = jaedb" >> ~/.pypirc echo -e "password = $PYPI_PASSWORD" >> ~/.pypirc