From e0dc7dffeb2f285d0f88d81595a15c19f9f57cdb Mon Sep 17 00:00:00 2001 From: dineshbaburam91 Date: Fri, 12 Jan 2024 13:48:43 +0530 Subject: [PATCH 1/2] PyEZ version 2.7.1.dev0 updated --- RELEASE-NOTES.md | 5 +++++ lib/jnpr/junos/version.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index ded8d09a3..5c1a26dbf 100755 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,8 @@ +## Release 2.7.1.dev0 - 12 JAN 2024 +## Features Added + +## Bugs Fixed + ## Release 2.7.0 - 12 JAN 2024 ## Features Added - Support added for Python 3.10 and above version diff --git a/lib/jnpr/junos/version.py b/lib/jnpr/junos/version.py index a9735a83b..098dac23c 100644 --- a/lib/jnpr/junos/version.py +++ b/lib/jnpr/junos/version.py @@ -1,4 +1,4 @@ -VERSION = "2.7.0" +VERSION = "2.7.1.dev0" DATE = "2024-Jan-12" # Augment with the internal version if present From 0d3428fffc282af192a5488cbaeaa4dcab221947 Mon Sep 17 00:00:00 2001 From: dineshbaburam91 Date: Mon, 15 Jan 2024 11:32:49 +0530 Subject: [PATCH 2/2] Fixed readthedoc issue. Configuration file is required for readthedoc portal to build PyEZ docs. https://docs.readthedocs.io/en/stable/config-file/v2.html --- .readthedocs.yml | 20 ++++++++++++++++++++ docs/requirements.txt | 1 + 2 files changed, 21 insertions(+) create mode 100644 .readthedocs.yml create mode 100644 docs/requirements.txt diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 000000000..09a661143 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,20 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# Optionally build your docs in additional formats such as PDF and ePub +formats: all + +# Optionally set the version of Python and requirements required to build your docs +python: + version: 3.12 + install: + - requirements: docs/requirements.txt + - requirements: requirements.txt diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 000000000..59aa86ccc --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1 @@ +sphinx_bootstrap_theme