Continuing work on regression test, adding requirements to update_dependencies.py

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-02-17 14:46:11 -08:00
parent c2d0655680
commit bd64f1c1c6
3 changed files with 4 additions and 4 deletions

View File

@@ -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 --upgrade"
command = "pip3 install pandas seaborn plotly numpy dash paramiko bokeh websocket-client pyarrow xlsxwriter --upgrade"
res = subprocess.call(command, shell = True)
print("Returned Value: ", res)