Skip to content

Commit

Permalink
replacing 'pip -r .circleci/requirements.txt' with installation of in…
Browse files Browse the repository at this point in the history
…dividual dependencies to upgrade subdependencies
  • Loading branch information
jonrkarr committed Mar 17, 2019
1 parent 7d52770 commit d667576
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Expand Up @@ -31,7 +31,11 @@ jobs:
name: Setup Python environment
command: |
if [[ -f .circleci/requirements.txt ]]; then
pip3 install -U -r .circleci/requirements.txt
while IFS="" read -r line || [ -n "$line" ]; do
if [[ ! -z "$line" ]] && [[ ! "$line" =~ ^# ]]; then
sudo pip3 install -U "$line"
fi
done < .circleci/requirements.txt
fi
- run:
name: Install package (Python 3)
Expand Down

0 comments on commit d667576

Please sign in to comment.