minor fixes at dependencies 63/8563/3
authortierno <alfonso.tiernosepulveda@telefonica.com>
Wed, 5 Feb 2020 12:43:44 +0000 (12:43 +0000)
committertierno <alfonso.tiernosepulveda@telefonica.com>
Fri, 7 Feb 2020 14:46:05 +0000 (14:46 +0000)
Change-Id: Ic30ce0df9b837ac519784e3438611e1163d7e17e
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
MANIFEST.in
devops-stages/stage-test.sh
requirements.txt
setup.py

index 2c2a19e..2e06a57 100644 (file)
@@ -21,4 +21,3 @@ recursive-include osm_nbi *.py *.sh *.cfg *.yml
 recursive-include osm_nbi/html_public *
 recursive-include osm_nbi/http *
 recursive-include devops-stages *
 recursive-include osm_nbi/html_public *
 recursive-include osm_nbi/http *
 recursive-include devops-stages *
-
index 5f94ba3..71d2252 100755 (executable)
@@ -13,6 +13,5 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-tox -e flake8
-tox -e unittest
+tox  # flake8 unittest
 
 
index 41bc5f6..99a136b 100644 (file)
@@ -17,5 +17,4 @@ python-keystoneclient
 requests
 git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common
 git+https://osm.etsi.org/gerrit/osm/IM.git#egg=osm-im
 requests
 git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common
 git+https://osm.etsi.org/gerrit/osm/IM.git#egg=osm-im
-aiohttp==2.3.10
-
+aiohttp>=2.3.10
index 7a4599a..67c1740 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -47,19 +47,15 @@ setup(
     # data_files=[('/etc/osm/', ['osm_nbi/nbi.cfg']),
     #             ('/etc/systemd/system/', ['osm_nbi/osm-nbi.service']),
     #             ],
     # data_files=[('/etc/osm/', ['osm_nbi/nbi.cfg']),
     #             ('/etc/systemd/system/', ['osm_nbi/osm-nbi.service']),
     #             ],
-    dependency_links=[
-        "git+https://osm.etsi.org/gerrit/osm/IM.git#egg=osm-im",
-        'git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common'
-    ],
     install_requires=[
         'CherryPy==18.1.2',
     install_requires=[
         'CherryPy==18.1.2',
-        'osm-common',
+        'osm-common @ git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common',
         'jsonschema',
         'PyYAML',
         'jsonschema',
         'PyYAML',
-        'osm-im',
+        'osm-im @ git+https://osm.etsi.org/gerrit/osm/IM.git#egg=osm-im',
         'python-keystoneclient',
         'requests',
         'python-keystoneclient',
         'requests',
-        'aiohttp',
+        'aiohttp>=2.3.10',
     ],
     setup_requires=['setuptools-version-command'],
 )
     ],
     setup_requires=['setuptools-version-command'],
 )