Skip to content

Commit 912e92f

Browse files
committed
Update copyright
1 parent bf50068 commit 912e92f

2 files changed

Lines changed: 27 additions & 32 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
MIT License
33

4-
Copyright (c) 2018-2025, Artem Golubin
4+
Copyright (c) 2018-2026, Artem Golubin
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
77

docs/conf.py

Lines changed: 26 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# This lets us ensure that the source package is imported, and that its
3434
# version is used.
3535

36-
if platform.system() == 'Darwin':
36+
if platform.system() == "Darwin":
3737
sys.path.insert(0, project_root)
3838

3939
import selectolax
@@ -46,28 +46,28 @@
4646
# Add any Sphinx extension module names here, as strings. They can be
4747
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
4848
extensions = [
49-
'sphinx.ext.autodoc',
50-
'sphinx.ext.viewcode',
51-
'numpydoc',
52-
'sphinxext.opengraph',
53-
'sphinx_copybutton'
49+
"sphinx.ext.autodoc",
50+
"sphinx.ext.viewcode",
51+
"numpydoc",
52+
"sphinxext.opengraph",
53+
"sphinx_copybutton",
5454
]
5555

5656
# Add any paths that contain templates here, relative to this directory.
57-
templates_path = ['_templates']
57+
templates_path = ["_templates"]
5858

5959
# The suffix of source filenames.
60-
source_suffix = '.rst'
60+
source_suffix = ".rst"
6161

6262
# The encoding of source files.
6363
# source_encoding = 'utf-8-sig'
6464

6565
# The master toctree document.
66-
master_doc = 'index'
66+
master_doc = "index"
6767

6868
# General information about the project.
69-
project = u'selectolax'
70-
copyright = u"2018-2025, Artem Golubin"
69+
project = "selectolax"
70+
copyright = "2018-2026, Artem Golubin"
7171

7272
# The version info for the project you're documenting, acts as replacement
7373
# for |version| and |release|, also used in various other places throughout
@@ -90,7 +90,7 @@
9090

9191
# List of patterns, relative to source directory, that match files and
9292
# directories to ignore when looking for source files.
93-
exclude_patterns = ['_build']
93+
exclude_patterns = ["_build"]
9494

9595
# The reST default role (used for this markup: `text`) to use for all
9696
# documents.
@@ -108,7 +108,7 @@
108108
# show_authors = False
109109

110110
# The name of the Pygments (syntax highlighting) style to use.
111-
pygments_style = 'sphinx'
111+
pygments_style = "sphinx"
112112

113113
# A list of ignored prefixes for module index sorting.
114114
# modindex_common_prefix = []
@@ -123,7 +123,7 @@
123123
# The theme to use for HTML and HTML Help pages. See the documentation for
124124
# a list of builtin themes.
125125
# html_theme = 'default'
126-
html_theme = 'furo'
126+
html_theme = "furo"
127127

128128
# Theme options are theme-specific and customize the look and feel of a
129129
# theme further. For a list of options available for each theme, see the
@@ -204,17 +204,15 @@
204204
# html_file_suffix = None
205205

206206
# Output file base name for HTML help builder.
207-
htmlhelp_basename = 'selectolaxdoc'
207+
htmlhelp_basename = "selectolaxdoc"
208208

209209
# -- Options for LaTeX output ------------------------------------------
210210

211211
latex_elements = {
212212
# The paper size ('letterpaper' or 'a4paper').
213213
# 'papersize': 'letterpaper',
214-
215214
# The font size ('10pt', '11pt' or '12pt').
216215
# 'pointsize': '10pt',
217-
218216
# Additional stuff for the LaTeX preamble.
219217
# 'preamble': '',
220218
}
@@ -223,9 +221,7 @@
223221
# (source start file, target name, title, author, documentclass
224222
# [howto/manual]).
225223
latex_documents = [
226-
('index', 'selectolax.tex',
227-
u'selectolax Documentation',
228-
u'Artem Golubin', 'manual'),
224+
("index", "selectolax.tex", "selectolax Documentation", "Artem Golubin", "manual"),
229225
]
230226

231227
# The name of an image file (relative to this directory) to place at
@@ -253,11 +249,7 @@
253249

254250
# One entry per manual page. List of tuples
255251
# (source start file, name, description, authors, manual section).
256-
man_pages = [
257-
('index', 'selectolax',
258-
u'selectolax Documentation',
259-
[u'Artem Golubin'], 1)
260-
]
252+
man_pages = [("index", "selectolax", "selectolax Documentation", ["Artem Golubin"], 1)]
261253

262254
# If true, show URL addresses after external links.
263255
# man_show_urls = False
@@ -269,12 +261,15 @@
269261
# (source start file, target name, title, author,
270262
# dir menu entry, description, category)
271263
texinfo_documents = [
272-
('index', 'selectolax',
273-
u'selectolax Documentation',
274-
u'Artem Golubin',
275-
'selectolax',
276-
'One line description of project.',
277-
'Miscellaneous'),
264+
(
265+
"index",
266+
"selectolax",
267+
"selectolax Documentation",
268+
"Artem Golubin",
269+
"selectolax",
270+
"One line description of project.",
271+
"Miscellaneous",
272+
),
278273
]
279274

280275
# Documents to append as an appendix to all manuals.

0 commit comments

Comments
 (0)