X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_lcm%2Flcm.py;h=7c33e5d4a42760d13c51814d23e21a8dfcefdf4e;hb=63de62e6af661d28705ad2a5a31273b36e746542;hp=2a040afde545a3b0698cbf5e7ceeea9da309bedd;hpb=17a612f3ae65192b04bea9518e3c35ebfec05924;p=osm%2FLCM.git diff --git a/osm_lcm/lcm.py b/osm_lcm/lcm.py index 2a040af..7c33e5d 100644 --- a/osm_lcm/lcm.py +++ b/osm_lcm/lcm.py @@ -27,8 +27,8 @@ min_RO_version = [0, 5, 72] min_n2vc_version = "0.0.2" min_common_version = "0.1.11" # uncomment if LCM is installed as library and installed, and get them from __init__.py -lcm_version = '0.1.18' -lcm_version_date = '2018-10-11' +lcm_version = '0.1.22' +lcm_version_date = '2018-10-31' class Lcm: @@ -105,7 +105,7 @@ class Lcm: raise LcmException("Not compatible osm/N2VC version '{}'. Needed '{}' or higher".format( n2vc_version, min_n2vc_version)) # check version of common - if versiontuple(common_version) < versiontuple("0.1.7"): + if versiontuple(common_version) < versiontuple(min_common_version): raise LcmException("Not compatible osm/common version '{}'. Needed '{}' or higher".format( common_version, min_common_version))