mirror of
https://github.com/actions/python-versions.git
synced 2025-04-06 15:29:39 +00:00
add possible fixes for python 3.11.0-alpha.1
This commit is contained in:
@ -261,6 +261,10 @@ if sys.version_info >= (3, 10):
|
||||
standard_library.remove('symbol')
|
||||
standard_library.remove('formatter')
|
||||
|
||||
# 'binhex' module has been removed from Python 3.11
|
||||
if sys.version_info >= (3, 11):
|
||||
standard_library.remove('binhex')
|
||||
|
||||
# Remove tkinter and Easter eggs
|
||||
excluded_modules = [
|
||||
'antigravity',
|
||||
|
Reference in New Issue
Block a user