Skip to content

Commit 7d0f52d

Browse files
committed
Release 2021.11.1
1 parent 480a072 commit 7d0f52d

File tree

3 files changed

+26
-19
lines changed

3 files changed

+26
-19
lines changed

Diff for: CHANGELOG.rst

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22
Changelog
33
=========
44

5-
`2021.11 <https://github.com/python/python-docs-theme/releases/tag/v2021.1>`_
5+
`2021.11.1 <https://github.com/python/python-docs-theme/releases/tag/v2021.11.1>`_
6+
-----------------------------------------------------------------------------------
7+
8+
- Fix monospace again, on buggy Google Chrome (#87)
9+
Contributed by Tushar Sadhwani
10+
11+
12+
`2021.11 <https://github.com/python/python-docs-theme/releases/tag/v2021.11>`_
613
-------------------------------------------------------------------------------
714

815
- Fix monospace on buggy Google Chrome (#85)

Diff for: python_docs_theme/theme.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[theme]
22
inherit = default
3-
stylesheet = pydoctheme.css?2021.11.dev
3+
stylesheet = pydoctheme.css?2021.11.1
44
pygments_style = default
55

66
[options]

Diff for: setup.py

+17-17
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,34 @@
55
from setuptools import setup
66

77
# README into long description
8-
with io.open('README.rst', encoding='utf-8') as readme_file:
8+
with io.open("README.rst", encoding="utf-8") as readme_file:
99
long_description = readme_file.read()
1010

1111

1212
setup(
13-
name='python-docs-theme',
13+
name="python-docs-theme",
1414
# Version is date based as year.month[.serial], where serial is used
1515
# if multiple releases are needed to address build failures.
16-
version='2021.11.dev',
17-
description='The Sphinx theme for the CPython docs and related projects',
16+
version="2021.11.1",
17+
description="The Sphinx theme for the CPython docs and related projects",
1818
long_description=long_description,
19-
author='PyPA',
20-
author_email='[email protected]',
21-
url='https://github.com/python/python-docs-theme/',
22-
packages=['python_docs_theme'],
19+
author="PyPA",
20+
author_email="[email protected]",
21+
url="https://github.com/python/python-docs-theme/",
22+
packages=["python_docs_theme"],
2323
include_package_data=True,
2424
entry_points={
25-
'sphinx.html_themes': [
26-
'python_docs_theme = python_docs_theme',
25+
"sphinx.html_themes": [
26+
"python_docs_theme = python_docs_theme",
2727
]
2828
},
2929
classifiers=[
30-
'Intended Audience :: Developers',
31-
'License :: OSI Approved :: Python Software Foundation License',
32-
'Operating System :: OS Independent',
33-
'Topic :: Documentation',
34-
'Topic :: Software Development :: Documentation',
35-
'Programming Language :: Python',
36-
'Programming Language :: Python :: 3',
30+
"Intended Audience :: Developers",
31+
"License :: OSI Approved :: Python Software Foundation License",
32+
"Operating System :: OS Independent",
33+
"Topic :: Documentation",
34+
"Topic :: Software Development :: Documentation",
35+
"Programming Language :: Python",
36+
"Programming Language :: Python :: 3",
3737
],
3838
)

0 commit comments

Comments
 (0)