Fix osm-common and n2vc dependencies to use v9.0 04/10604/1 branch-bug1511-start
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Thu, 8 Apr 2021 20:13:21 +0000 (22:13 +0200)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Thu, 8 Apr 2021 20:14:01 +0000 (22:14 +0200)
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 <gerardo.garciadeblas@telefonica.com>
requirements.txt
setup.py

index 32a09a9..37a5599 100644 (file)
@@ -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
 
index a2d8a1b..411066f 100644 (file)
--- 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',