From: Timo Tietavainen Date: Mon, 27 Jun 2022 05:21:03 +0000 (+0300) Subject: Bump to Python version 3.8 X-Git-Tag: 3.1.1~1 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?p=ric-plt%2Fsdlpy.git;a=commitdiff_plain;h=3109b281a8e977cc6eb36e1f6e6276d1ed27f8c0 Bump to Python version 3.8 Bump Python version to 3.8 because nowadays Python 3.8 is the default Python version delivered in many Linux distributions. Publish new sdlpy version 3.1.1 due to Python version bump. Issue-Id: RIC-923 Signed-off-by: Timo Tietavainen Change-Id: Ia05c18456319fed82edb9dac0bc2bf7a9be8cf49 --- diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 095222a..611e11a 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,7 +8,7 @@ build: image: latest python: - version: 3.7 + version: 3.8 install: - requirements: docs/requirements-docs.txt diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 2e1477b..82fa617 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -33,6 +33,10 @@ This document provides the release notes of the ricsdl library. Version history --------------- +[3.1.1] - 2022-06-27 + +* Bump Python version to 3.8. + [3.1.0] - 2022-03-14 * Enable redis/sentinel port and sentinel master name configuration diff --git a/ricsdl-package/ricsdl/__init__.py b/ricsdl-package/ricsdl/__init__.py index fc607ca..54daab5 100644 --- a/ricsdl-package/ricsdl/__init__.py +++ b/ricsdl-package/ricsdl/__init__.py @@ -31,7 +31,7 @@ from .exceptions import ( ) -__version__ = '3.1.0' +__version__ = '3.1.1' __all__ = [ diff --git a/ricsdl-package/tox.ini b/ricsdl-package/tox.ini index ba68b9d..f1fd448 100644 --- a/ricsdl-package/tox.ini +++ b/ricsdl-package/tox.ini @@ -20,7 +20,7 @@ [tox] -envlist = py37,flake8 +envlist = py38,flake8 [testenv] deps = @@ -35,7 +35,7 @@ commands = coverage xml -i [testenv:flake8] -basepython = python3.7 +basepython = python3.8 skip_install = true deps = flake8 commands = flake8 setup.py ricsdl