Skip to content

Commit

Permalink
Update python and pyinstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
LostDragonist committed Oct 31, 2021
1 parent c791c2b commit 058a75e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 058a75e

Please sign in to comment.