From 837c5221f5eff97b920b5dcf5b888331d5d1fab2 Mon Sep 17 00:00:00 2001 From: Davide Brunato Date: Fri, 22 Jul 2022 08:57:00 +0200 Subject: [PATCH] Suppress Sphinx warning on non-existent static path (issue #305) --- doc/conf.py | 5 +++-- setup.py | 2 +- xmlschema/__init__.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 2e9362e7..f0a9e64e 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -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. @@ -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. diff --git a/setup.py b/setup.py index 30630c8d..ad1e2eae 100755 --- a/setup.py +++ b/setup.py @@ -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'], diff --git a/xmlschema/__init__.py b/xmlschema/__init__.py index e0bccd50..980c03e6 100644 --- a/xmlschema/__init__.py +++ b/xmlschema/__init__.py @@ -31,7 +31,7 @@ XsdComponent, XsdType, XsdElement, XsdAttribute ) -__version__ = '2.0.1' +__version__ = '2.0.2' __author__ = "Davide Brunato" __contact__ = "brunato@sissa.it" __copyright__ = "Copyright 2016-2022, SISSA"