Skip to content

Commit

Permalink
Suppress Sphinx warning on non-existent static path (issue #305)
Browse files Browse the repository at this point in the history
  • Loading branch information
brunato committed Jul 22, 2022
1 parent 7d33f31 commit 837c522
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
# The short X.Y version.
version = '2.0'
# The full version, including alpha/beta/rc tags.
release = '2.0.1'
release = '2.0.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -120,7 +120,8 @@
# 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']
html_static_path = []

# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='xmlschema',
version='2.0.1',
version='2.0.2',
packages=find_packages(include=['xmlschema*']),
package_data={
'xmlschema': ['locale/**/*.mo', 'locale/**/*.po', 'schemas/*/*.xsd'],
Expand Down
2 changes: 1 addition & 1 deletion xmlschema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
XsdComponent, XsdType, XsdElement, XsdAttribute
)

__version__ = '2.0.1'
__version__ = '2.0.2'
__author__ = "Davide Brunato"
__contact__ = "[email protected]"
__copyright__ = "Copyright 2016-2022, SISSA"
Expand Down

0 comments on commit 837c522

Please sign in to comment.