Skip to content

Commit

Permalink
remove extra [ALL] in install_all.py (#752)
Browse files Browse the repository at this point in the history
  • Loading branch information
Matic Lubej committed Sep 6, 2023
1 parent eddd6cb commit 5fbdbb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import warnings

if __name__ == "__main__":
subprocess.check_call([sys.executable, "-m", "pip", "install", *sys.argv[1:], ".[ALL]"])
subprocess.check_call([sys.executable, "-m", "pip", "install", *sys.argv[1:], "."])
warnings.warn(
"Installing via `install_all.py` is no longer necessary and has been deprecated. Use `pip install"
" eo-learn` instead."
Expand Down

0 comments on commit 5fbdbb8

Please sign in to comment.