Skip to content

Commit

Permalink
21.10.12 released
Browse files Browse the repository at this point in the history
  • Loading branch information
SRBuilds committed Jul 27, 2023
1 parent 41d5a4b commit 6cb7887
Show file tree
Hide file tree
Showing 18 changed files with 24 additions and 23 deletions.
Binary file added docs/source/_static/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
# -- Project information -----------------------------------------------------

project = 'pySROS'
copyright = '2021, Nokia'
copyright = '2021-2023, Nokia'
author = 'Nokia'

# The full version, including alpha/beta/rc tags
version = '21.10.11'
release = '21.10.11'
version = '21.10.12'
release = '21.10.12'


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -71,5 +71,5 @@
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_logo = "_static/nokia-logo-blue-2023.png"

html_favicon = '_static/favicon.png'

7 changes: 4 additions & 3 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ documentation will be updated accordingly.
.. list-table::
:header-rows: 0

* - pySROS release: 21.10.11
* - Document Number: 3HE 17936 AAAM TQZZA
* - pySROS release: 21.10.12
* - Document Number: 3HE 17936 AAAN TQZZA

.. Reviewed by PLM 20230131
.. Reviewed by PLM 20230523
.. Reviewed by TechComms 20230524
.. toctree::
Expand Down
2 changes: 1 addition & 1 deletion pysros/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

__all__ = ("management", "exceptions", "wrappers", "pprint", )

Expand Down
2 changes: 1 addition & 1 deletion pysros/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

from .exceptions import *
from .exceptions import make_exception
Expand Down
2 changes: 1 addition & 1 deletion pysros/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

__all__ = ("SrosMgmtError", "InvalidPathError", "ModelProcessingError", "InternalError", "SrosConfigConflictError", "ActionTerminatedIncompleteError", )

Expand Down
2 changes: 1 addition & 1 deletion pysros/identifier.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import re

Expand Down
2 changes: 1 addition & 1 deletion pysros/management.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import base64
import contextlib
Expand Down
2 changes: 1 addition & 1 deletion pysros/model.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import copy
import locale
Expand Down
2 changes: 1 addition & 1 deletion pysros/model_builder.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import copy
import xml.parsers.expat
Expand Down
2 changes: 1 addition & 1 deletion pysros/model_path.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

from typing import Dict, Iterable

Expand Down
2 changes: 1 addition & 1 deletion pysros/model_walker.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import contextlib
import copy
Expand Down
2 changes: 1 addition & 1 deletion pysros/pprint.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

from .wrappers import *
from .errors import *
Expand Down
2 changes: 1 addition & 1 deletion pysros/request_data.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import copy
import pprint
Expand Down
2 changes: 1 addition & 1 deletion pysros/tokenizer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import collections
import re
Expand Down
2 changes: 1 addition & 1 deletion pysros/wrappers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import operator

Expand Down
2 changes: 1 addition & 1 deletion pysros/yang_type.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021 Nokia
# Copyright 2021-2023 Nokia

import base64

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

setup(
name='pysros',
version='21.10.11',
version='21.10.12',
packages=['pysros'],
url='https://www.nokia.com',
license='Copyright 2021 Nokia. License available in the LICENSE.md file.',
license='Copyright 2021-2023 Nokia. License available in the LICENSE.md file.',
author='Nokia',
author_email='',
description='Python for the Nokia Service Router Operating Systems (pySROS)',
Expand Down

0 comments on commit 6cb7887

Please sign in to comment.