diff --git a/py-scripts/html_test_output.sh b/py-scripts/regression_test.sh similarity index 100% rename from py-scripts/html_test_output.sh rename to py-scripts/regression_test.sh diff --git a/py-scripts/update_dependencies.py b/py-scripts/update_dependencies.py new file mode 100644 index 00000000..dac713ce --- /dev/null +++ b/py-scripts/update_dependencies.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 +import subprocess +def main(): + command = "pip install pandas seaborn plotly numpy dash --upgrade" + res = subprocess.call(command, shell = True) + + print("Returned Value: ", res) + +if __name__ == "__main__": + main()