mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-08 17:14:43 +01:00
11 lines
216 B
Python
11 lines
216 B
Python
import sys
|
|
|
|
if sys.version_info >= (3, 0):
|
|
good_python = sys.version_info >= (3, 5)
|
|
else:
|
|
good_python = sys.version_info >= (2, 7)
|
|
|
|
collect_ignore = []
|
|
if not good_python:
|
|
collect_ignore.append("client")
|