Skip to content

Commit 357a133

Browse files
committed
Merge branch 'release/1.8.0'
2 parents 55cddb5 + e349ac4 commit 357a133

File tree

8 files changed

+247
-218
lines changed

8 files changed

+247
-218
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.idea
22
.cache
3+
.envrc
34
.tox
45
dist
56
pytest_echo.egg-info

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
1.8.0
2+
-----
3+
* drop support for setuptools
4+
* drop support for python < 3.11
5+
* drop support for pytest < 6.0
6+
7+
18
1.7.0
29
-----
310
* add support python 3.6,3.7,3.8

docs/conf.py

Lines changed: 76 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -11,214 +11,214 @@
1111
# All configuration values have a default; values that are commented out
1212
# serve to show the default.
1313

14-
import sys, os
15-
1614
# If extensions (or modules to document with autodoc) are in another directory,
1715
# add these directories to sys.path here. If the directory is relative to the
1816
# documentation root, use os.path.abspath to make it absolute, like shown here.
19-
#sys.path.insert(0, os.path.abspath('.'))
17+
# sys.path.insert(0, os.path.abspath('.'))
2018

2119
# -- General configuration -----------------------------------------------------
2220

2321
# If your documentation needs a minimal Sphinx version, state it here.
24-
#needs_sphinx = '1.0'
22+
# needs_sphinx = '1.0'
2523

2624
# Add any Sphinx extension module names here, as strings. They can be extensions
2725
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
28-
extensions = ['sphinx.ext.intersphinx', 'sphinx.ext.autodoc', 'sphinx.ext.viewcode']
26+
extensions = ["sphinx.ext.intersphinx", "sphinx.ext.autodoc", "sphinx.ext.viewcode"]
2927

3028
# Add any paths that contain templates here, relative to this directory.
31-
templates_path = ['_templates']
29+
templates_path = ["_templates"]
3230

3331
# The suffix of source filenames.
34-
source_suffix = '.rst'
32+
source_suffix = ".rst"
3533

3634
# The encoding of source files.
37-
#source_encoding = 'utf-8-sig'
35+
# source_encoding = 'utf-8-sig'
3836

3937
# The master toctree document.
40-
master_doc = 'index'
38+
master_doc = "index"
4139

4240
# General information about the project.
43-
project = u'pytest-echo'
44-
copyright = u'2014, Stefano Apostolico'
41+
project = "pytest-echo"
42+
copyright = "2014, Stefano Apostolico"
4543

4644
# The version info for the project you're documenting, acts as replacement for
4745
# |version| and |release|, also used in various other places throughout the
4846
# built documents.
4947
#
5048
# The short X.Y version.
51-
version = '1.2'
49+
version = "1.2"
5250
# The full version, including alpha/beta/rc tags.
53-
release = '1.2'
51+
release = "1.2"
5452

5553
# The language for content autogenerated by Sphinx. Refer to documentation
5654
# for a list of supported languages.
57-
#language = None
55+
# language = None
5856

5957
# There are two options for replacing |today|: either, you set today to some
6058
# non-false value, then it is used:
61-
#today = ''
59+
# today = ''
6260
# Else, today_fmt is used as the format for a strftime call.
63-
#today_fmt = '%B %d, %Y'
61+
# today_fmt = '%B %d, %Y'
6462

6563
# List of patterns, relative to source directory, that match files and
6664
# directories to ignore when looking for source files.
67-
exclude_patterns = ['_build']
65+
exclude_patterns = ["_build"]
6866

6967
# The reST default role (used for this markup: `text`) to use for all documents.
70-
#default_role = None
68+
# default_role = None
7169

7270
# If true, '()' will be appended to :func: etc. cross-reference text.
73-
#add_function_parentheses = True
71+
# add_function_parentheses = True
7472

7573
# If true, the current module name will be prepended to all description
7674
# unit titles (such as .. function::).
77-
#add_module_names = True
75+
# add_module_names = True
7876

7977
# If true, sectionauthor and moduleauthor directives will be shown in the
8078
# output. They are ignored by default.
81-
#show_authors = False
79+
# show_authors = False
8280

8381
# The name of the Pygments (syntax highlighting) style to use.
84-
pygments_style = 'sphinx'
82+
pygments_style = "sphinx"
8583

8684
# A list of ignored prefixes for module index sorting.
87-
#modindex_common_prefix = []
85+
# modindex_common_prefix = []
8886

8987

9088
# -- Options for HTML output ---------------------------------------------------
9189

9290
# The theme to use for HTML and HTML Help pages. See the documentation for
9391
# a list of builtin themes.
94-
html_theme = 'default'
92+
html_theme = "default"
9593

9694
# Theme options are theme-specific and customize the look and feel of a theme
9795
# further. For a list of options available for each theme, see the
9896
# documentation.
99-
#html_theme_options = {}
97+
# html_theme_options = {}
10098

10199
# Add any paths that contain custom themes here, relative to this directory.
102-
#html_theme_path = []
100+
# html_theme_path = []
103101

104102
# The name for this set of Sphinx documents. If None, it defaults to
105103
# "<project> v<release> documentation".
106-
#html_title = None
104+
# html_title = None
107105

108106
# A shorter title for the navigation bar. Default is the same as html_title.
109-
#html_short_title = None
107+
# html_short_title = None
110108

111109
# The name of an image file (relative to this directory) to place at the top
112110
# of the sidebar.
113-
#html_logo = None
111+
# html_logo = None
114112

115113
# The name of an image file (within the static path) to use as favicon of the
116114
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
117115
# pixels large.
118-
#html_favicon = None
116+
# html_favicon = None
119117

120118
# Add any paths that contain custom static files (such as style sheets) here,
121119
# relative to this directory. They are copied after the builtin static files,
122120
# so a file named "default.css" will overwrite the builtin "default.css".
123-
html_static_path = ['_static']
121+
html_static_path = ["_static"]
124122

125123
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
126124
# using the given strftime format.
127-
#html_last_updated_fmt = '%b %d, %Y'
125+
# html_last_updated_fmt = '%b %d, %Y'
128126

129127
# If true, SmartyPants will be used to convert quotes and dashes to
130128
# typographically correct entities.
131-
#html_use_smartypants = True
129+
# html_use_smartypants = True
132130

133131
# Custom sidebar templates, maps document names to template names.
134-
#html_sidebars = {}
132+
# html_sidebars = {}
135133

136134
# Additional templates that should be rendered to pages, maps page names to
137135
# template names.
138-
#html_additional_pages = {}
136+
# html_additional_pages = {}
139137

140138
# If false, no module index is generated.
141-
#html_domain_indices = True
139+
# html_domain_indices = True
142140

143141
# If false, no index is generated.
144-
#html_use_index = True
142+
# html_use_index = True
145143

146144
# If true, the index is split into individual pages for each letter.
147-
#html_split_index = False
145+
# html_split_index = False
148146

149147
# If true, links to the reST sources are added to the pages.
150-
#html_show_sourcelink = True
148+
# html_show_sourcelink = True
151149

152150
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
153-
#html_show_sphinx = True
151+
# html_show_sphinx = True
154152

155153
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
156-
#html_show_copyright = True
154+
# html_show_copyright = True
157155

158156
# If true, an OpenSearch description file will be output, and all pages will
159157
# contain a <link> tag referring to it. The value of this option must be the
160158
# base URL from which the finished HTML is served.
161-
#html_use_opensearch = ''
159+
# html_use_opensearch = ''
162160

163161
# This is the file name suffix for HTML files (e.g. ".xhtml").
164-
#html_file_suffix = None
162+
# html_file_suffix = None
165163

166164
# Output file base name for HTML help builder.
167-
htmlhelp_basename = 'pytest-echodoc'
165+
htmlhelp_basename = "pytest-echodoc"
168166

169167

170168
# -- Options for LaTeX output --------------------------------------------------
171169

172170
latex_elements = {
173-
# The paper size ('letterpaper' or 'a4paper').
174-
#'papersize': 'letterpaper',
175-
176-
# The font size ('10pt', '11pt' or '12pt').
177-
#'pointsize': '10pt',
178-
179-
# Additional stuff for the LaTeX preamble.
180-
#'preamble': '',
171+
# The paper size ('letterpaper' or 'a4paper').
172+
#'papersize': 'letterpaper',
173+
# The font size ('10pt', '11pt' or '12pt').
174+
#'pointsize': '10pt',
175+
# Additional stuff for the LaTeX preamble.
176+
#'preamble': '',
181177
}
182178

183179
# Grouping the document tree into LaTeX files. List of tuples
184180
# (source start file, target name, title, author, documentclass [howto/manual]).
185181
latex_documents = [
186-
('index', 'pytest-echo.tex', u'pytest-echo Documentation',
187-
u'Stefano Apostolico', 'manual'),
182+
(
183+
"index",
184+
"pytest-echo.tex",
185+
"pytest-echo Documentation",
186+
"Stefano Apostolico",
187+
"manual",
188+
),
188189
]
189190

190191
# The name of an image file (relative to this directory) to place at the top of
191192
# the title page.
192-
#latex_logo = None
193+
# latex_logo = None
193194

194195
# For "manual" documents, if this is true, then toplevel headings are parts,
195196
# not chapters.
196-
#latex_use_parts = False
197+
# latex_use_parts = False
197198

198199
# If true, show page references after internal links.
199-
#latex_show_pagerefs = False
200+
# latex_show_pagerefs = False
200201

201202
# If true, show URL addresses after external links.
202-
#latex_show_urls = False
203+
# latex_show_urls = False
203204

204205
# Documents to append as an appendix to all manuals.
205-
#latex_appendices = []
206+
# latex_appendices = []
206207

207208
# If false, no module index is generated.
208-
#latex_domain_indices = True
209+
# latex_domain_indices = True
209210

210211

211212
# -- Options for manual page output --------------------------------------------
212213

213214
# One entry per manual page. List of tuples
214215
# (source start file, name, description, authors, manual section).
215216
man_pages = [
216-
('index', 'pytest-echo', u'pytest-echo Documentation',
217-
[u'Stefano Apostolico'], 1)
217+
("index", "pytest-echo", "pytest-echo Documentation", ["Stefano Apostolico"], 1)
218218
]
219219

220220
# If true, show URL addresses after external links.
221-
#man_show_urls = False
221+
# man_show_urls = False
222222

223223

224224
# -- Options for Texinfo output ------------------------------------------------
@@ -227,20 +227,26 @@
227227
# (source start file, target name, title, author,
228228
# dir menu entry, description, category)
229229
texinfo_documents = [
230-
('index', 'pytest-echo', u'pytest-echo Documentation',
231-
u'Stefano Apostolico', 'pytest-echo', '-',
232-
'Miscellaneous'),
230+
(
231+
"index",
232+
"pytest-echo",
233+
"pytest-echo Documentation",
234+
"Stefano Apostolico",
235+
"pytest-echo",
236+
"-",
237+
"Miscellaneous",
238+
),
233239
]
234240

235241
# Documents to append as an appendix to all manuals.
236-
#texinfo_appendices = []
242+
# texinfo_appendices = []
237243

238244
# If false, no module index is generated.
239-
#texinfo_domain_indices = True
245+
# texinfo_domain_indices = True
240246

241247
# How to display URL addresses: 'footnote', 'no', or 'inline'.
242-
#texinfo_show_urls = 'footnote'
248+
# texinfo_show_urls = 'footnote'
243249

244250

245251
# Example configuration for intersphinx: refer to the Python standard library.
246-
intersphinx_mapping = {'https://docs.python.org/': None}
252+
intersphinx_mapping = {"https://docs.python.org/": None}

0 commit comments

Comments
 (0)