Skip to content

Commit

Permalink
Revert "generate_release: try fix for py3.8"
Browse files Browse the repository at this point in the history
This reverts commit a1fe3d8.
  • Loading branch information
alive4ever committed Feb 15, 2025
1 parent b1b07e9 commit 8fe8356
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions generate_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,7 @@ def wine_run(command_parts):
check_subp(subprocess.run([r'7z', '-y', 'e', '-opython', visual_c_name, visual_c_path_to_dlls]))

log('Installing dependencies')
if python_version_minor == 8:
wine_run(['./python/python.exe', '-I', '-m', 'pip', 'install', '--no-use-pep517', '--no-compile', '-r', './requirements.txt'])
else:
wine_run(['./python/python.exe', '-I', '-m', 'pip', 'install', '--no-compile', '-r', './requirements.txt'])
wine_run(['./python/python.exe', '-I', '-m', 'pip', 'install', '--no-compile', '-r', './requirements.txt'])

log('Uninstalling unnecessary gevent stuff')
shutil.rmtree(r'./python/Lib/site-packages/gevent/tests')
Expand Down

0 comments on commit 8fe8356

Please sign in to comment.