mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 08:46:39 -06:00
Ignore Python 3.8 minor versions while fixing eventlet issues for Python 3.9.
This commit is contained in:
parent
7e3a932890
commit
07fa09f3c7
@ -35,7 +35,7 @@ if 'PGADMIN_SERVER_MODE' in os.environ:
|
||||
else:
|
||||
builtins.SERVER_MODE = None
|
||||
|
||||
if (3, 10) > sys.version_info > (3, 8) and os.name == 'posix':
|
||||
if (3, 10) > sys.version_info > (3, 8, 99) and os.name == 'posix':
|
||||
# Fix eventlet issue with Python 3.9.
|
||||
# Ref: https://github.com/eventlet/eventlet/issues/670
|
||||
# This was causing issue in psycopg3
|
||||
|
Loading…
Reference in New Issue
Block a user