Skip to content

Commit 6f83640

Browse files
authored
explicitly depend on typing_extensions (#117)
1 parent 157d8a5 commit 6f83640

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/task.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ install_deps
9090
if ! ls .venv &> /dev/null; then
9191
python3 -m venv .venv
9292
fi
93-
if ! .venv/bin/pip3 show google-cloud-storage typer &> /dev/null; then
94-
.venv/bin/pip3 install google-cloud-storage typer &> /dev/null
93+
if ! .venv/bin/pip3 show google-cloud-storage typer typing_extensions &> /dev/null; then
94+
.venv/bin/pip3 install google-cloud-storage typer typing_extensions &> /dev/null
9595
fi
9696

9797
.venv/bin/python3 $SCRIPT_DIR/python/main.py "$@"

0 commit comments

Comments
 (0)