compatibility fix for Python < v3.13
This commit is contained in:
parent
8867e747af
commit
7e5f43941a
1 changed files with 1 additions and 1 deletions
|
|
@ -228,7 +228,7 @@ class Config(Lockable):
|
|||
enable_erigon = False
|
||||
autochg_ignore_labels = False
|
||||
autosign = False
|
||||
threaded_python = not sys._is_gil_enabled()
|
||||
threaded_python = sys.version_info.minor > 12 and not sys._is_gil_enabled()
|
||||
aes_backend = 'cryptography'
|
||||
|
||||
# regtest:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue