Skip to content

Commit

Permalink
supporting dependency links
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Dec 14, 2017
1 parent 0b36caa commit 77d326f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
- cache-v3-{{ .Branch }}-
- cache-v3-

- run: pip2 install -U git+https://github.com/KarrLab/pkg_utils.git#egg=pkg_utils
- run: pip2 install -U git+https://github.com/KarrLab/karr_lab_build_utils.git#egg=karr_lab_build_utils
- run: pip2 install -U --process-dependency-links git+https://github.com/KarrLab/pkg_utils.git#egg=pkg_utils
- run: pip2 install -U --process-dependency-links git+https://github.com/KarrLab/karr_lab_build_utils.git#egg=karr_lab_build_utils
- run: karr_lab_build_utils2 install-requirements
- run: pip2 install -U -e .[all]
- run: pip2 install -U --process-dependency-links -e .[all]

- run: pip3 install -U git+https://github.com/KarrLab/pkg_utils.git#egg=pkg_utils
- run: pip3 install -U git+https://github.com/KarrLab/karr_lab_build_utils.git#egg=karr_lab_build_utils
- run: pip3 install -U --process-dependency-links git+https://github.com/KarrLab/pkg_utils.git#egg=pkg_utils
- run: pip3 install -U --process-dependency-links git+https://github.com/KarrLab/karr_lab_build_utils.git#egg=karr_lab_build_utils
- run: karr_lab_build_utils3 install-requirements
- run: pip3 install -U -e .[all]
- run: pip3 install -U --process-dependency-links -e .[all]

- save_cache:
key: cache-v3-{{ .Branch }}-{{ checksum "requirements.txt" }}
Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ biopython
configparser
networkx
numpy
git+https://github.com/KarrLab/obj_model.git#egg=obj_model
git+https://github.com/KarrLab/obj_model.git#egg=obj_model-0.0.4
robpol86_sphinxcontrib_googleanalytics
six
sphinx >= 1.6
sphinx_rtd_theme
sphinxcontrib_bibtex
sphinxcontrib_spelling
git+https://github.com/KarrLab/wc_utils.git#egg=wc_utils
git+https://github.com/KarrLab/wc_utils.git#egg=wc_utils-0.0.1a5
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
biopython
networkx
numpy
git+https://github.com/KarrLab/obj_model.git#egg=obj_model
git+https://github.com/KarrLab/obj_model.git#egg=obj_model-0.0.4
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pkg_utils
except ImportError:
import pip
pip.main(['install', 'git+https://github.com/KarrLab/pkg_utils.git#egg=pkg_utils'])
pip.main(['install', '--process-dependency-links', 'git+https://github.com/KarrLab/pkg_utils.git#egg=pkg_utils'])
import pkg_utils
import os

Expand Down

0 comments on commit 77d326f

Please sign in to comment.