Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed May 6, 2022
1 parent 350ba29 commit e22b502
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion actions/assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def _extras(extras: Union[str, list, tuple] = "") -> str:

@staticmethod
def _install_pip(repo: Dict[str, str]) -> str:
"""Create command for instaling a project from source (if HTTPS is given) or from PyPI (if at least name is
"""Create command for installing a project from source (if HTTPS is given) or from PyPI (if at least name is
given)."""
assert any(k in repo for k in ["HTTPS", "name"]), f"Missing key `HTTPS` or `name` among {repo.keys()}"
# pip install -q 'https://github.com/...#egg=lightning-flash[tabular]
Expand Down
4 changes: 1 addition & 3 deletions configs/PyTorchLightning/flash_pl-develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ target_repository:
- tests/examples/utils.py
- tests/examples/test_scripts.py

before_install:
- pip install pytest-forked

contact:
slack:
# Ethan Harris
Expand All @@ -30,6 +27,7 @@ dependencies:
HTTPS: https://github.com/PyTorchLightning/metrics.git
checkout: master
# install_extras: all
- name: pytest-forked

testing:
dirs:
Expand Down
7 changes: 4 additions & 3 deletions configs/PyTorchLightning/flash_pl-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ target_repository:
- tests/examples/utils.py
- tests/examples/test_scripts.py

before_install:
- pip install pytest-forked

contact:
slack:
# Ethan Harris
Expand All @@ -25,7 +22,11 @@ dependencies:
- name: pytorch-lightning
HTTPS: https://github.com/PyTorchLightning/pytorch-lightning.git
checkout: release/stable
- name: torchmetrics
HTTPS: https://github.com/PyTorchLightning/metrics.git
checkout: release/latest
# install_extras: all
- name: pytest-forked

testing:
dirs:
Expand Down

0 comments on commit e22b502

Please sign in to comment.