From 13030cc36cf9d08c9ba2a8e975de70d59d69a216 Mon Sep 17 00:00:00 2001 From: czichy Date: Thu, 8 Jun 2023 15:08:52 +0300 Subject: [PATCH] H release step 1 of 2 Change-Id: I9fefd5cb19ab1d3deab155b718da38685daca862 Signed-off-by: czichy --- Dockerfile-Unit-Test | 4 ++-- docs/release-notes.rst | 4 ++++ rmr-version.yaml | 2 +- setup.py | 2 +- tox.ini | 13 +++++++++---- 5 files changed, 17 insertions(+), 8 deletions(-) diff --git a/Dockerfile-Unit-Test b/Dockerfile-Unit-Test index c5f392a..2325156 100644 --- a/Dockerfile-Unit-Test +++ b/Dockerfile-Unit-Test @@ -21,7 +21,7 @@ RUN apt-get update && \ apt-get install -y \ wget gcc musl-dev -ARG rmr_version=4.8.0 +ARG rmr_version=4.9.1 ARG e2ap_version=1.1.0 # download rmr and e2ap libraries from package cloud @@ -41,7 +41,7 @@ RUN ls /usr/local/lib/ FROM python:3.8-slim -ARG rmr_version=4.8.0 +ARG rmr_version=4.9.1 ARG e2ap_version=1.1.0 COPY --from=stretch /usr/local/lib/librmr_si.so.${rmr_version} /usr/local/lib/librmr_si.so diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 2601205..36727a8 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -10,6 +10,10 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `__ and this project adheres to `Semantic Versioning `__. +[3.2.2] - 2023-06-08 +-------------------- +* update RMR version to 4.9.1 + [3.2.1] - 2022-12-12 -------------------- * small permission fix in python init files diff --git a/rmr-version.yaml b/rmr-version.yaml index 3781811..3332542 100644 --- a/rmr-version.yaml +++ b/rmr-version.yaml @@ -1,3 +1,3 @@ # CI script installs RMR from PackageCloud using this version --- -version: 4.8.0 +version: 4.9.1 diff --git a/setup.py b/setup.py index 6d43f90..ab7a2b7 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def _long_descr(): setup( name="ricxappframe", - version="3.2.1", + version="3.2.2", packages=find_packages(exclude=["tests.*", "tests"]), author="O-RAN Software Community", description="Xapp and RMR framework for Python", diff --git a/tox.ini b/tox.ini index 2497e9c..314baf0 100644 --- a/tox.ini +++ b/tox.ini @@ -19,7 +19,7 @@ envlist = code,flake8,docs,docs-linkcheck minversion = 2.0 [testenv:code] -basepython = python3.8 +basepython = python3.10 deps= pytest coverage @@ -35,7 +35,7 @@ commands = coverage xml -i [testenv:flake8] -basepython = python3.8 +basepython = python3.10 skip_install = true deps = flake8 commands = flake8 setup.py ricxappframe tests @@ -53,7 +53,7 @@ commands = sh -c 'pip freeze > requirements.txt' [testenv:docs] whitelist_externals = echo skipsdist = true -basepython = python3.8 +basepython = python3 setenv = LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64 deps = sphinx @@ -68,13 +68,17 @@ deps = sphinx ricsdl protobuf inotify + urllib3~=1.26.15 + +allowlist_externals = echo + commands = sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html echo "Generated docs available in {toxinidir}/docs/_build/html" [testenv:docs-linkcheck] skipsdist = true -basepython = python3.8 +basepython = python3 setenv = LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64 deps = sphinx @@ -87,4 +91,5 @@ deps = sphinx mdclogpy msgpack ricsdl + urllib3~=1.26.15 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck -- 2.16.6