From cdfd59cc0eced9519ada92716af8ac13f0b4d769 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Mon, 10 Jan 2022 15:03:51 +0800 Subject: [PATCH] docs: update copyright date for docs automatically --- docs/en/COPYRIGHT.rst | 2 +- docs/en/conf.py | 6 +++++- docs/zh_CN/conf.py | 6 +++++- tools/ci/mypy_ignore_list.txt | 1 - 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/docs/en/COPYRIGHT.rst b/docs/en/COPYRIGHT.rst index 2af8fc4660..a1f43ec1a0 100644 --- a/docs/en/COPYRIGHT.rst +++ b/docs/en/COPYRIGHT.rst @@ -4,7 +4,7 @@ Copyrights and Licenses Software Copyrights =================== -All original source code in this repository is Copyright (C) 2015-2021 Espressif Systems. This source code is licensed under the Apache License 2.0 as described in the file LICENSE. +All original source code in this repository is Copyright (C) 2015-2022 Espressif Systems. This source code is licensed under the Apache License 2.0 as described in the file LICENSE. Additional third party copyrighted code is included under the following licenses. diff --git a/docs/en/conf.py b/docs/en/conf.py index a2fa8030db..c69e51b642 100644 --- a/docs/en/conf.py +++ b/docs/en/conf.py @@ -14,9 +14,13 @@ except ImportError: sys.path.insert(0, os.path.abspath('../')) from conf_common import * # noqa: F403,F401 +import datetime + +current_year = datetime.datetime.now().year + # General information about the project. project = u'ESP-IDF Programming Guide' -copyright = u'2016 - 2021, Espressif Systems (Shanghai) Co., Ltd' +copyright = u'2016 - {}, Espressif Systems (Shanghai) Co., Ltd'.format(current_year) # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/zh_CN/conf.py b/docs/zh_CN/conf.py index a13d6d79f9..cc6fbc2712 100644 --- a/docs/zh_CN/conf.py +++ b/docs/zh_CN/conf.py @@ -14,9 +14,13 @@ except ImportError: sys.path.insert(0, os.path.abspath('..')) from conf_common import * # noqa: F403,F401 +import datetime + +current_year = datetime.datetime.now().year + # General information about the project. project = u'ESP-IDF 编程指南' -copyright = u'2016 - 2021 乐鑫信息科技(上海)股份有限公司' +copyright = u'2016 - {} 乐鑫信息科技(上海)股份有限公司'.format(current_year) # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/tools/ci/mypy_ignore_list.txt b/tools/ci/mypy_ignore_list.txt index 2b0fb4ea29..ae0bf532c4 100644 --- a/tools/ci/mypy_ignore_list.txt +++ b/tools/ci/mypy_ignore_list.txt @@ -48,7 +48,6 @@ docs/sanitize_version.py docs/test/en/conf.py docs/test/test_docs.py docs/test/test_sphinx_idf_extensions.py -docs/zh_CN/conf.py examples/bluetooth/nimble/blecent/blecent_test.py examples/bluetooth/nimble/blehr/blehr_test.py examples/bluetooth/nimble/bleprph/bleprph_test.py