Skip to content

Commit

Permalink
Support Python3.12 and python 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
yairzori-guardicore committed Mar 26, 2024
1 parent 019e5cf commit 8c7032c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion haigha2/transports/gevent_transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
try:
import gevent
import gevent.ssl
import gevent._socket3
try:
import gevent._socket2
except ImportError:
import gevent._socket3
import gevent.socket
import gevent.ssl
from gevent.event import Event
Expand Down

0 comments on commit 8c7032c

Please sign in to comment.