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 294c35a commit 6c8fa3d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 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-v8-{{ .Branch }}-
- cache-v8-

- 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-v8-{{ .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 @@ -15,5 +15,5 @@ sphinxcontrib_bibtex
sphinxcontrib_spelling
sqlalchemy
sympy
# git+https://github.com/KarrLab/wc_lang.git#egg=wc_lang # wc modeling language
git+https://github.com/KarrLab/wc_utils.git#egg=wc_utils # wc modeling utilities
# git+https://github.com/KarrLab/wc_lang.git#egg=wc_lang-0.0.1 # wc modeling language
git+https://github.com/KarrLab/wc_utils.git#egg=wc_utils-0.0.1a5 # wc modeling utilities
22 changes: 11 additions & 11 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
cement # framework for building command line programs
cement # framework for building command line programs
cobra >= 0.8.2
ipython # interactive interpret
matplotlib # plotting
numpy # numerical computing
ipython # interactive interpret
matplotlib # plotting
numpy # numerical computing
openpyxl
optlang # numerical optimization
# pgmpy # graphical models package
# scikit_learn # data science package
scipy # scientific computing
sqlalchemy # relational databases
git+https://github.com/KarrLab/wc_lang.git#egg=wc_lang # wc modeling language
git+https://github.com/KarrLab/wc_utils.git#egg=wc_utils # wc modeling utilities
optlang # numerical optimization
# pgmpy # graphical models package
# scikit_learn # data science package
scipy # scientific computing
sqlalchemy # relational databases
git+https://github.com/KarrLab/wc_lang.git#egg=wc_lang-0.0.1 # wc modeling language
git+https://github.com/KarrLab/wc_utils.git#egg=wc_utils-0.0.1a5 # wc modeling utilities
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 6c8fa3d

Please sign in to comment.