From 659bf1dff6a2bfeefd00db7d3b017f0ae41cb66d Mon Sep 17 00:00:00 2001 From: Gilles Lepretre Date: Fri, 28 Nov 2025 22:19:46 +0100 Subject: [PATCH 1/2] Add readthedocs yaml config Required by readthedocs now, docs build is failing. --- .readthedocs.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..a3ea7f38 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,15 @@ +# Read the Docs configuration file for Sphinx projects +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +version: 2 + +sphinx: + configuration: docs/conf.py + +python: + install: + - method: pip + path: . + extra_requirements: + - docs + - requirements: docs/requirements.txt From 7958e901bafa3f2d586de98e4921e4bbcecc1fcd Mon Sep 17 00:00:00 2001 From: Gilles Lepretre Date: Fri, 28 Nov 2025 22:23:28 +0100 Subject: [PATCH 2/2] Update docs info Was very outdated --- docs/conf.py | 6 +++--- docs/index.rst | 2 +- pygal/__about__.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 9cd64fc4..ceb9aaf4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,8 +52,8 @@ # General information about the project. project = 'pygal' -copyright = '2012-2016, Florian Mounier' -author = 'Florian Mounier' +copyright = '2012-2025, Kozea' +author = 'Kozea' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -62,7 +62,7 @@ # The short X.Y version. version = '3.0' # The full version, including alpha/beta/rc tags. -release = '3.0.4' +release = '3.0.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index c6759d1d..1d2a55be 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -67,4 +67,4 @@ Index Credits ======= -`A Kozea Community Project `_ +`A Kozea Project `_ diff --git a/pygal/__about__.py b/pygal/__about__.py index 07ddd5b0..a28c7995 100644 --- a/pygal/__about__.py +++ b/pygal/__about__.py @@ -3,8 +3,8 @@ __summary__ = "A Python svg graph plotting library" __uri__ = "https://www.pygal.org/" -__author__ = "Florian Mounier / Kozea" -__email__ = "community@kozea.fr" +__author__ = "Kozea" +__email__ = "dev@kozea.fr" __license__ = "GNU LGPL v3+" __copyright__ = "Copyright 2020 %s" % __author__