update_dependencies needs to ensure pip is up to date before running updates

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-11-05 10:20:23 -07:00
parent 266118cc63
commit 5879f64646

View File

@@ -33,6 +33,7 @@ def main():
packages_installed = []
packages_failed =[]
subprocess.call("pip3 uninstall jwt", shell=True)
subprocess.call('pip3 install --upgrade pip', shell=True)
for package in packages:
if os.name == 'nt':
command = "pip3 install {} ".format(package)