From 5c269f4366323fa7375cff0edf84527cad0d5a59 Mon Sep 17 00:00:00 2001 From: Yifei Zhang Date: Mon, 13 Feb 2023 22:05:28 -0500 Subject: [PATCH] swap to py3 and add explicit package versions --- public_html/bower.json | 14 +++++++------- start_localhost.sh | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/public_html/bower.json b/public_html/bower.json index 53265c1..cd4e2c6 100644 --- a/public_html/bower.json +++ b/public_html/bower.json @@ -5,12 +5,12 @@ "homepage": "https://github.com/alisonmsmith/termite-ui", "private": true, "dependencies": { - "angular": "1.2.x", - "angular-route": "1.2.x", - "angular-loader": "1.2.x", - "angular-mocks": "~1.2.15", - "underscore": "", - "d3": "", - "jquery":"" + "angular": "1.2.23", + "angular-route": "1.2.23", + "angular-loader": "1.2.23", + "angular-mocks": "1.2.23", + "underscore": "1.6.0", + "d3": "3.4.11", + "jquery":"2.1.1" } } diff --git a/start_localhost.sh b/start_localhost.sh index f3edc07..d1fa0bf 100755 --- a/start_localhost.sh +++ b/start_localhost.sh @@ -23,7 +23,7 @@ launch_localhost() { echo "Starting a python SimpleHTTPServer at port 8000..." echo "Press Ctrl+C to close this python web server." echo - cd public_html && python -m SimpleHTTPServer 8000 + cd public_html && python -m http.server 8000 } update_dependencies