From c50c8ab6b4a1c63479430c1865539fc19c643bd0 Mon Sep 17 00:00:00 2001 From: Jack Morgan Date: Mon, 24 May 2021 14:04:57 +1200 Subject: [PATCH 1/3] Add missing MANIFEST file Package was missing required HTML files. Raises #522 --- MANIFEST.in | 3 +++ verto/VertoExtension.py | 1 + 2 files changed, 4 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..2f4ad2a1 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include *.txt +include *.md +recursive-include verto *.html *.py *.png *.conf *.md *.json diff --git a/verto/VertoExtension.py b/verto/VertoExtension.py index 0f38b61c..c7eb80f4 100644 --- a/verto/VertoExtension.py +++ b/verto/VertoExtension.py @@ -145,6 +145,7 @@ def loadJinjaTemplates(self, custom_templates): Args: custom_templates: a dictionary of names to custom templates which are used to override default templates. + Returns: A dictionary of tuples containing template-names to compiled jinja templated. From 8c85f7a35e755a07207a68a6f768eb1248e7f7c1 Mon Sep 17 00:00:00 2001 From: Jack Morgan Date: Mon, 24 May 2021 14:08:47 +1200 Subject: [PATCH 2/3] Increment version number to 1.0.1 --- verto/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verto/__init__.py b/verto/__init__.py index 16ee11b6..d1076386 100644 --- a/verto/__init__.py +++ b/verto/__init__.py @@ -1,4 +1,4 @@ # flake8: noqa from .Verto import Verto -__version__ = '1.0.0' +__version__ = '1.0.1' From df50632fcf1a1119b75d1f657f51effaf65392cb Mon Sep 17 00:00:00 2001 From: Jack Morgan Date: Mon, 24 May 2021 14:09:41 +1200 Subject: [PATCH 3/3] Updated changelog --- docs/source/changelog.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 832df9a5..2f208993 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,11 @@ Changelog ####################################### +1.0.1 +======================================= + +- Fix bug where required HTML files are not packaged in build. + 1.0.0 =======================================