Skip to content

Commit

Permalink
removing auto pip package upgrading
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Aug 21, 2018
1 parent 649feee commit 2bec77d
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .circleci/config.yml
Expand Up @@ -14,9 +14,9 @@ jobs:
# Load packages from cache
- restore_cache:
keys:
- cache-v2-{{ .Branch }}-{{ checksum "requirements.txt" }}
- cache-v2-{{ .Branch }}-
- cache-v2-
- cache-v3-{{ .Branch }}-{{ checksum "requirements.txt" }}
- cache-v3-{{ .Branch }}-
- cache-v3-

# Python 3 installation tasks
- run:
Expand All @@ -27,10 +27,9 @@ jobs:
command: pip3 install -U --process-dependency-links git+https://github.com/KarrLab/karr_lab_build_utils.git#egg=karr_lab_build_utils[all]
- run:
name: Install package (Python 3)
command: pip3 install -U --process-dependency-links -e .[all]
- run:
name: Upgrade requirements (Python 3)
command: karr_lab_build_utils3 upgrade-requirements
command: |
pip3 install "cement>=3.0.0"
pip3 install -U --process-dependency-links -e .[all]
# Save packages to cache
- save_cache:
Expand Down

0 comments on commit 2bec77d

Please sign in to comment.