update_dependencies.py: adds simple-geometry library

Signed-off-by: Jed Reynolds <jed@candelatech.com>
This commit is contained in:
Jed Reynolds
2021-03-02 12:28:20 -08:00
parent 4bcddb1c8d
commit 7b43f6d2fe

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