This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-cookbook.git


The following commit(s) were added to refs/heads/main by this push:
     new 3fae0d1  MINOR: update copyright year to 2022 (#230)
3fae0d1 is described below

commit 3fae0d1254ff36773e08135b931a080e12ed2c54
Author: Neal Richardson <[email protected]>
AuthorDate: Mon Jul 18 10:00:04 2022 -0400

    MINOR: update copyright year to 2022 (#230)
---
 cpp/source/conf.py    | 21 ++++++++++-----------
 python/source/conf.py | 23 ++++++++++-------------
 2 files changed, 20 insertions(+), 24 deletions(-)

diff --git a/cpp/source/conf.py b/cpp/source/conf.py
index 6077e50..7275d29 100644
--- a/cpp/source/conf.py
+++ b/cpp/source/conf.py
@@ -28,14 +28,15 @@
 #
 import os
 import sys
+
 sys.path.append(os.path.abspath("../ext"))
 
 
 # -- Project information -----------------------------------------------------
 
-project = 'Apache Arrow C++ Cookbook'
-copyright = '2021, Apache Software Foundation'
-author = 'The Apache Software Foundation'
+project = "Apache Arrow C++ Cookbook"
+copyright = "2022, Apache Software Foundation"
+author = "The Apache Software Foundation"
 
 
 # -- General configuration ---------------------------------------------------
@@ -43,12 +44,10 @@ author = 'The Apache Software Foundation'
 # Add any Sphinx extension module names here, as strings. They can be
 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
 # ones.
-extensions = [
-    "sphinx.ext.intersphinx", "recipeext"
-]
+extensions = ["sphinx.ext.intersphinx", "recipeext"]
 
 # Add any paths that contain templates here, relative to this directory.
-templates_path = ['_templates']
+templates_path = ["_templates"]
 
 # List of patterns, relative to source directory, that match files and
 # directories to ignore when looking for source files.
@@ -61,11 +60,11 @@ exclude_patterns = []
 # The theme to use for HTML and HTML Help pages.  See the documentation for
 # a list of builtin themes.
 #
-html_theme = 'alabaster'
+html_theme = "alabaster"
 
 html_theme_options = {
-    'page_width': '1200px',
-    'code_font_size': '0.8em',
+    "page_width": "1200px",
+    "code_font_size": "0.8em",
 }
 
 # Add any paths that contain custom static files (such as style sheets) here,
@@ -74,4 +73,4 @@ html_theme_options = {
 html_static_path = []
 
 
-intersphinx_mapping = {'cpparrow': ('https://arrow.apache.org/docs/', None)}
+intersphinx_mapping = {"cpparrow": ("https://arrow.apache.org/docs/";, None)}
diff --git a/python/source/conf.py b/python/source/conf.py
index be8a945..43f4121 100644
--- a/python/source/conf.py
+++ b/python/source/conf.py
@@ -17,9 +17,9 @@
 
 # -- Project information -----------------------------------------------------
 
-project = 'Apache Arrow Python Cookbook'
-copyright = '2021, Apache Software Foundation'
-author = 'The Apache Software Foundation'
+project = "Apache Arrow Python Cookbook"
+copyright = "2022, Apache Software Foundation"
+author = "The Apache Software Foundation"
 
 
 # -- General configuration ---------------------------------------------------
@@ -27,13 +27,10 @@ author = 'The Apache Software Foundation'
 # Add any Sphinx extension module names here, as strings. They can be
 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
 # ones.
-extensions = [
-    "sphinx.ext.doctest",
-    "sphinx.ext.intersphinx"
-]
+extensions = ["sphinx.ext.doctest", "sphinx.ext.intersphinx"]
 
 # Add any paths that contain templates here, relative to this directory.
-templates_path = ['_templates']
+templates_path = ["_templates"]
 
 # List of patterns, relative to source directory, that match files and
 # directories to ignore when looking for source files.
@@ -46,17 +43,17 @@ exclude_patterns = []
 # The theme to use for HTML and HTML Help pages.  See the documentation for
 # a list of builtin themes.
 #
-html_theme = 'alabaster'
+html_theme = "alabaster"
 
 html_theme_options = {
-    'page_width': '1200px',
-    'code_font_size': '0.8em',
+    "page_width": "1200px",
+    "code_font_size": "0.8em",
 }
 
 # Add any paths that contain custom static files (such as style sheets) here,
 # 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']
+html_static_path = ["_static"]
 
 
-intersphinx_mapping = {'pyarrow': ('https://arrow.apache.org/docs/', None)}
+intersphinx_mapping = {"pyarrow": ("https://arrow.apache.org/docs/";, None)}

Reply via email to