diff options
author | Piotr Stanior <piotr.stanior@t-mobile.pl> | 2022-01-12 16:25:40 +0100 |
---|---|---|
committer | Piotr Stanior <piotr.stanior@t-mobile.pl> | 2022-01-14 11:31:11 +0100 |
commit | d7966b32c11b772ca4a86b600154d79eeeed7f04 (patch) | |
tree | 87c1076130e0a818e1c43c9dc44c355e1f3cf1b9 | |
parent | 893d3a54189d4d1425e1cd8f64e871fe38bab794 (diff) |
Update ONAP SDK version to 9.2.2
Issue-ID: INT-2043
Change-Id: Ia77b525ec05427b696ab3aaf31f51ef5f8f0ff58
Signed-off-by: Piotr Stanior <piotr.stanior@t-mobile.pl>
-rw-r--r-- | onap_data_provider/tag_handlers.py | 3 | ||||
-rw-r--r-- | requirements.txt | 2 | ||||
-rw-r--r-- | setup.py | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/onap_data_provider/tag_handlers.py b/onap_data_provider/tag_handlers.py index 8f29d0d..a6b4ba7 100644 --- a/onap_data_provider/tag_handlers.py +++ b/onap_data_provider/tag_handlers.py @@ -16,6 +16,7 @@ """ import yaml import uuid +from typing import Any def join(loader: yaml.SafeLoader, node: yaml.Node) -> str: @@ -39,7 +40,7 @@ def join(loader: yaml.SafeLoader, node: yaml.Node) -> str: return "".join([str(i) for i in seq]) -def generate_random_uuid(*_) -> str: +def generate_random_uuid(*_: Any) -> str: """Random UUID generator. Args: diff --git a/requirements.txt b/requirements.txt index 3bdc671..ef61bd0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -onapsdk==8.2.0 +onapsdk==9.2.2 PyYAML~=5.4.1 jsonschema==3.2.0 @@ -21,7 +21,7 @@ with open("README.md", "r", encoding="utf-8") as readme: setuptools.setup( name="onap_data_provider", - version="0.4.1", + version="0.5.0", author="Michal Jagiello <michal.jagiello@t-mobile.pl>, Piotr Stanior <piotr.stanior@t-mobile.pl>", description="Tool to provide data for ONAP instances", long_description=long_description, @@ -35,7 +35,7 @@ setuptools.setup( "onap-data-provider=onap_data_provider.data_provider:run", ] }, - install_requires=["onapsdk==8.2.0", "PyYAML~=5.4.1", "jsonschema==3.2.0"], + install_requires=["onapsdk==9.2.2", "PyYAML~=5.4.1", "jsonschema==3.2.0"], classifiers=[ "Development Status :: 5 - Production/Stable", "Programming Language :: Python", |