From bff0f9d393d2ff53f30f14aa387bf305e780d451 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Fri, 19 Feb 2021 10:32:01 -0800 Subject: [PATCH] Add datatable to update dependencies Signed-off-by: Matthew Stidham --- py-scripts/update_dependencies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-scripts/update_dependencies.py b/py-scripts/update_dependencies.py index 6c1258d1..39c12257 100755 --- a/py-scripts/update_dependencies.py +++ b/py-scripts/update_dependencies.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 import subprocess def main(): - command = "pip3 install pandas seaborn plotly numpy dash paramiko bokeh websocket-client pyarrow xlsxwriter --upgrade" + command = "pip3 install pandas seaborn plotly numpy dash paramiko bokeh websocket-client pyarrow xlsxwriter datatable --upgrade" res = subprocess.call(command, shell = True) print("Returned Value: ", res)