From 626ed46569191648fa59d2a21f43af8fb499a522 Mon Sep 17 00:00:00 2001 From: Johan Marcusson Date: Mon, 25 Sep 2023 13:39:47 +0200 Subject: [PATCH 1/3] add .readthedocs.yaml config --- .readthedocs.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..f3aa1f5a --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,22 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# We recommend specifying your dependencies to enable reproducible builds: +# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +# python: +# install: +# - requirements: docs/requirements.txt From a09b3a91bac83522239e9352228f9e8689b23676 Mon Sep 17 00:00:00 2001 From: Johan Marcusson Date: Mon, 25 Sep 2023 13:45:05 +0200 Subject: [PATCH 2/3] specify sphinx master_doc --- docs/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 2c7cd23a..f17e7baf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,3 +52,5 @@ # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ["_static"] + +master_doc = "index" From 761fcf9bd4ecdf044e7b17418591b81a736de8a3 Mon Sep 17 00:00:00 2001 From: Johan Marcusson Date: Tue, 14 Nov 2023 13:21:00 +0100 Subject: [PATCH 3/3] Update version.py --- src/cnaas_nms/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cnaas_nms/version.py b/src/cnaas_nms/version.py index 1bb032c7..700e6271 100644 --- a/src/cnaas_nms/version.py +++ b/src/cnaas_nms/version.py @@ -1,3 +1,3 @@ -__version__ = "1.6.0a1" +__version__ = "1.5.1" __version_info__ = tuple([field for field in __version__.split(".")]) __api_version__ = "v1.0"