From 0f1564d16aaf3101418ded22e07442f65781ea53 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Thu, 8 Apr 2021 22:13:21 +0200 Subject: [PATCH] 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 --- requirements.txt | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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', -- 2.25.1