Skip to content

Commit f56c494

Browse files
author
Kharude, Sachin
committed
Bump version 0.7.1 -> 0.7.2
Signed-off-by: Kharude, Sachin <sachin.kharude@here.com>
1 parent cbc5029 commit f56c494

4 files changed

Lines changed: 29 additions & 27 deletions

File tree

docs/source/conf.py

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818

1919
# -- Project information -----------------------------------------------------
2020

21-
project = 'xyzspaces'
22-
copyright = '2019-2021, HERE Europe B.V.'
23-
author = 'HERE Europe B.V.'
21+
project = "xyzspaces"
22+
copyright = "2019-2021, HERE Europe B.V."
23+
author = "HERE Europe B.V."
2424

2525

2626
# -- General configuration ---------------------------------------------------
@@ -29,28 +29,29 @@
2929
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3030
# ones.
3131
extensions = [
32-
'sphinx.ext.autodoc',
33-
'sphinx.ext.viewcode',
34-
'sphinx.ext.todo',
35-
'sphinx.ext.autodoc.typehints',
36-
'sphinx_rtd_theme',
37-
'sphinx_thebe'
32+
"sphinx.ext.autodoc",
33+
"sphinx.ext.viewcode",
34+
"sphinx.ext.todo",
35+
"sphinx.ext.autodoc.typehints",
36+
"sphinx_rtd_theme",
37+
"sphinx_thebe",
38+
"sphinx_copybutton",
3839
]
3940

4041
# Add any paths that contain templates here, relative to this directory.
41-
templates_path = ['_templates']
42+
templates_path = ["_templates"]
4243

4344
# The language for content autogenerated by Sphinx. Refer to documentation
4445
# for a list of supported languages.
4546
#
4647
# This is also used if you do content translation via gettext catalogs.
4748
# Usually you set "language" from the command line for these cases.
48-
language = 'en'
49+
language = "en"
4950

5051
# List of patterns, relative to source directory, that match files and
5152
# directories to ignore when looking for source files.
5253
# This pattern also affects html_static_path and html_extra_path.
53-
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
54+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
5455

5556
# -- Options for Sphinx-Thebe ------------------------------------------------
5657

@@ -67,14 +68,14 @@
6768
# The theme to use for HTML and HTML Help pages. See the documentation for
6869
# a list of builtin themes.
6970
#
70-
html_theme = 'sphinx_rtd_theme'
71+
html_theme = "sphinx_rtd_theme"
7172

7273
# Add any paths that contain custom static files (such as style sheets) here,
7374
# relative to this directory. They are copied after the builtin static files,
7475
# so a file named "default.css" will overwrite the builtin "default.css".
75-
html_static_path = ['_static']
76-
master_doc = 'index'
77-
pygments_style = 'sphinx'
76+
html_static_path = ["_static"]
77+
master_doc = "index"
78+
pygments_style = "sphinx"
7879

7980

8081
# -- Extension configuration -------------------------------------------------
@@ -88,10 +89,10 @@
8889
# -- autodoc options configuration -------------------------------------------------
8990

9091
autodoc_default_options = {
91-
'members': True,
92-
'undoc-members': True,
93-
'special-members': True,
94-
'show-inheritance': True,
95-
'member-order': 'bysource',
96-
'exclude-members': '__dict__,__weakref__,__module__'
92+
"members": True,
93+
"undoc-members": True,
94+
"special-members": True,
95+
"show-inheritance": True,
96+
"member-order": "bysource",
97+
"exclude-members": "__dict__,__weakref__,__module__",
9798
}

docs/source/xyzspaces.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ Subpackages
1313
.. toctree::
1414
:maxdepth: 4
1515

16+
xyzspaces.config
1617
xyzspaces.datasets
18+
xyzspaces.iml
19+
xyzspaces.iml.apis
1720

1821
Submodules
1922
----------
@@ -30,7 +33,4 @@ Submodules
3033
xyzspaces.logconf
3134
xyzspaces.spaces
3235
xyzspaces.tools
33-
xyzspaces.utils
34-
xyzspaces.config
35-
xyzspaces.iml
36-
xyzspaces.iml.apis
36+
xyzspaces.utils

requirements_dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ pytest-rerunfailures
1212
Sphinx>=2.4.0
1313
sphinx-rtd-theme
1414
sphinx-thebe>=0.0.8
15+
sphinx-copybutton
1516
twine
1617
pytest-flake8
1718
isort

xyzspaces/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717

1818
"""Project version information."""
1919

20-
__version__ = "0.7.1"
20+
__version__ = "0.7.2"

0 commit comments

Comments
 (0)