Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pytorch_lightning/setup_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def _load_requirements(path_dir: str, file_name: str = 'requirements.txt', comme
if comment_char in ln:
ln = ln[:ln.index(comment_char)].strip()
# skip directly installed dependencies
if ln.startswith('http'):
if ln.startswith('http') or '@http' in ln:
continue
if ln: # if requirement is not empty
reqs.append(ln)
Expand Down
2 changes: 1 addition & 1 deletion requirements/extra.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ torchtext>=0.5
onnxruntime>=1.3.0
hydra-core>=1.0
# todo: when switch to standard package stream, drop `fairscale` from hard mocked docs libs
fairscale @ https://github.com/PyTorchLightning/fairscale/archive/pl_1.2.0.zip
fairscale @https://github.com/PyTorchLightning/fairscale/archive/pl_1.2.0.zip
jsonargparse[signatures]>=3.9.0