mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-21 23:43:18 +01:00
11 lines
231 B
Python
11 lines
231 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("sshuttle/tests/client")
|