H release step 1 of 2 04/11304/6
authorczichy <thoralf.czichy@nokia.com>
Thu, 8 Jun 2023 12:08:52 +0000 (15:08 +0300)
committerczichy <thoralf.czichy@nokia.com>
Thu, 8 Jun 2023 14:11:38 +0000 (17:11 +0300)
Change-Id: I9fefd5cb19ab1d3deab155b718da38685daca862
Signed-off-by: czichy <thoralf.czichy@nokia.com>
Dockerfile-Unit-Test
docs/release-notes.rst
rmr-version.yaml
setup.py
tox.ini

index c5f392a..2325156 100644 (file)
@@ -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
index 2601205..36727a8 100644 (file)
@@ -10,6 +10,10 @@ All notable changes to this project will be documented in this file.
 The format is based on `Keep a Changelog <http://keepachangelog.com/>`__
 and this project adheres to `Semantic Versioning <http://semver.org/>`__.
 
+[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
index 3781811..3332542 100644 (file)
@@ -1,3 +1,3 @@
 # CI script installs RMR from PackageCloud using this version
 ---
-version: 4.8.0
+version: 4.9.1
index 6d43f90..ab7a2b7 100644 (file)
--- 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 (file)
--- 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