Skip to content

Commit

Permalink
Merge pull request #75 from kipoi/minorfixes
Browse files Browse the repository at this point in the history
Minor fixes
  • Loading branch information
haimasree committed Jan 4, 2022
2 parents 061f5e9 + 87edda4 commit 8ce44f3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
mkdir -p /home/runner/singularity/
sudo apt-get update && sudo apt-get install -y libhdf5-serial-dev pkg-config
python -m pip install --upgrade pip
pip install -e .
pip install .
- name: Build and test ${{ matrix.image }}
shell: bash -l {0}
run: |
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
mkdir -p /home/runner/singularity/
sudo apt-get update && sudo apt-get install -y libhdf5-serial-dev pkg-config
python -m pip install --upgrade pip
pip install -e .
pip install .
- name: Build sharedpy3keras2 and kipoi-base-env
shell: bash -l {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-with-model-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: |
sudo apt-get update && sudo apt-get install -y libhdf5-serial-dev pkg-config
python -m pip install --upgrade pip
pip install -e .
pip install .
- name: Sync with kipoi model repo
shell: bash -l {0}
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8
pip install -e .
pip install .
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
mkdir -p /home/runner/singularity/
sudo apt-get update && sudo apt-get install -y libhdf5-serial-dev pkg-config
python -m pip install --upgrade pip
pip install -e .
pip install .
- name: Test with pytest
shell: bash -l {0}
run: |
Expand All @@ -85,7 +85,7 @@ jobs:
run: |
sudo apt-get update && sudo apt-get install -y libhdf5-serial-dev pkg-config
python -m pip install --upgrade pip
pip install -e .
pip install .
- name: Test kipoi_containers and send coverage report to coveralls.io
run: |-
pip install coveralls
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ kipoi predict Basset \

- Install [singularity](https://sylabs.io/guides/3.0/user-guide/installation.html)

- Install kipoi_containers using ```pip install -e .```
- Install kipoi_containers using ```pip install .```

## Environment variables

Expand Down
2 changes: 1 addition & 1 deletion kipoi_containers/update_all_singularity_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def run_update(docker_image: str) -> None:
kipoi_containers/container-info/model-group-to-singularity.json will be
updated.
"""
click.echo(f"Testing {docker_image}")
click.echo(f"Updating {docker_image}")
model_group_to_singularity_dict = populate_json(
MODEL_GROUP_TO_SINGULARITY_JSON
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
boilerplate you need to create a Python package.",
entry_points={
"console_scripts": [
"update_all_singularity=kipoi_containers.update_all_singularity_containers:run_update",
"update_all_singularity=kipoi_containers.update_all_singularity_images:run_update",
],
},
install_requires=requirements,
Expand Down

0 comments on commit 8ce44f3

Please sign in to comment.