From: garciadeblas Date: Thu, 8 Apr 2021 20:13:21 +0000 (+0200) Subject: Fix osm-common and n2vc dependencies to use v9.0 X-Git-Tag: branch-bug1511-start X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FLCM.git;a=commitdiff_plain;h=refs%2Ftags%2Fbranch-bug1511-start Fix osm-common and n2vc dependencies to use v9.0 The dependencies in requirements.txt were pointing to master instead of pointing to v9.0. With the recent changes in the repos, osm-common and n2vc in master did not have dependencies, so errors can appear. The file setup.py was also updated because it was enough to specify the requirements there as 'n2vc' and 'osm-common'. Change-Id: I9140439a4b9e0e0cee2c04f148491445840c3863 Signed-off-by: garciadeblas --- diff --git a/requirements.txt b/requirements.txt index 32a09a9..37a5599 100644 --- a/requirements.txt +++ b/requirements.txt @@ -17,6 +17,6 @@ aiohttp>=2.3.10 jinja2 grpcio-tools grpclib -git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common -git+https://osm.etsi.org/gerrit/osm/N2VC.git#egg=n2vc +git+https://osm.etsi.org/gerrit/osm/common.git@v9.0#egg=osm-common +git+https://osm.etsi.org/gerrit/osm/N2VC.git@v9.0#egg=n2vc diff --git a/setup.py b/setup.py index a2d8a1b..411066f 100644 --- a/setup.py +++ b/setup.py @@ -49,8 +49,8 @@ setup( # 'pymongo', 'PyYAML', 'aiohttp>=2.3.10', - 'osm-common @ git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common', - 'n2vc @ git+https://osm.etsi.org/gerrit/osm/N2VC.git#egg=n2vc', + 'osm-common', + 'n2vc', 'jinja2', 'grpcio-tools', 'grpclib',