Skip to content

Commit

Permalink
refactor: move requirements/ to code/requirements/
Browse files Browse the repository at this point in the history
  • Loading branch information
edkerk committed Jun 16, 2022
1 parent fdd0f2f commit dcf1cae
Show file tree
Hide file tree
Showing 11 changed files with 162 additions and 164 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/memote-history.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: '3.9.7'

- name: Install memote
run: pip install -r requirements/ci-requirements.txt
run: pip install -r code/requirements/ci-requirements.txt

- name: Setup variables
id: setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/memote-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
python-version: '3.9.7'

- name: Install memote
run: pip install -r requirements/ci-requirements.txt
run: pip install -r code/requirements/ci-requirements.txt

- name: Convert model
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/memote_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
python-version: '3.9.7'

- name: Install memote
run: pip install -r requirements/requirements.txt
run: pip install -r code/requirements/requirements.txt

- name: Memote run
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yaml-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ jobs:

- name: Import with cobrapy
run: |
pip install -r requirements/ci-requirements.txt
pip install -r code/requirements/ci-requirements.txt
python -c "import cobra ; cobra.io.load_yaml_model('model/yeast-GEM.yml')"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Please see the installation instructions for each software package.

If you want to use any of the [provided](https://github.com/SysBioChalmers/yeast-GEM/tree/main/code) Python functions, you may create an environment with all requirements:
```bash
pip install -r requirements/requirements.txt # installs all dependencies
pip install -r code/requirements/requirements.txt # installs all dependencies
touch .env # creates a .env file for locating the root
```

Expand Down
File renamed without changes.
Loading

0 comments on commit dcf1cae

Please sign in to comment.