From 058a75eeb3c0ff79fc773d3f7440732a5a773c63 Mon Sep 17 00:00:00 2001 From: Chris Bessent Date: Sun, 31 Oct 2021 08:32:09 -0700 Subject: [PATCH] Update python and pyinstaller --- README.md | 6 +++--- release.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7fdbe09..32f4bd5 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,12 @@ The primary use of this tool is to easily add library folders on drives that alr Dependencies: -* Python 3.9.5 -* Pyinstaller 4.3 +* Python 3.10.0 +* Pyinstaller 4.6 To release: -$ py -3.9 release.py +$ py -3.10 release.py External code used: diff --git a/release.py b/release.py index 4f04c9f..8d250c4 100644 --- a/release.py +++ b/release.py @@ -6,7 +6,7 @@ SCRIPT_NAME = "steam_library_setup_tool" # Find the location of Python 3.6 -with winreg.OpenKey( winreg.HKEY_CURRENT_USER, "Software\\Python\\PythonCore\\3.9\\InstallPath" ) as key: +with winreg.OpenKey( winreg.HKEY_CURRENT_USER, "Software\\Python\\PythonCore\\3.10\\InstallPath" ) as key: python_path = winreg.QueryValueEx( key, "" )[ 0 ] # Find the location of pyinstaller