add possible fixes for python 3.11.0-alpha.1

This commit is contained in:
Dmitry Shibanov
2021-10-11 15:18:43 +03:00
parent 668a260bba
commit 816cfb12d1
2 changed files with 5 additions and 1 deletions

View File

@ -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',