summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/stl/trex_stl_lib/__init__.py
blob: 672036b4e98c8f3a05b9ada4d07b2e9b05d0f5c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
import sys

if sys.version_info < (2, 7):
    print("\n**** TRex STL pacakge requires Python version >= 2.7 ***\n")
    exit(-1)

if sys.version_info >= (3, 0):
    print("\n**** TRex STL pacakge does not support Python 3 (yet) ***\n")
    #exit(-1)

import trex_stl_ext