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 274330c commit 5b44446
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 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 requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cement
enum34
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
natsort
six
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
python_libsbml >= 5.16.0
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 5b44446

Please sign in to comment.