Correcting errors in regression_test and adding pyarrow to update_dependencies:

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-02-17 10:14:12 -08:00
parent 9db0c32b38
commit 803758a8ba
2 changed files with 38 additions and 38 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 --upgrade"
command = "pip3 install pandas seaborn plotly numpy dash paramiko bokeh websocket-client pyarrow --upgrade"
res = subprocess.call(command, shell = True)
print("Returned Value: ", res)