From bcc432b2481b6b44f1329feba2320f38022fea22 Mon Sep 17 00:00:00 2001 From: higginsw Date: Tue, 14 Feb 2023 17:34:45 -0500 Subject: [PATCH 1/2] Add configuration to satisfy mkdocs 1.2.3 mkdocs now requires a mkdocs_theme.yml file, even if it's blank. We're also generally using Python 3.8 in consumerfinance.gov, so this is a added to setup.py. --- mkDOCter/mkdocs_theme.yml | 0 setup.py | 1 + 2 files changed, 1 insertion(+) create mode 100644 mkDOCter/mkdocs_theme.yml diff --git a/mkDOCter/mkdocs_theme.yml b/mkDOCter/mkdocs_theme.yml new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index a24bb66..a366556 100644 --- a/setup.py +++ b/setup.py @@ -32,5 +32,6 @@ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.8', ] ) From 1683ec7c9a078b0e7204c257812a0b7e35f86471 Mon Sep 17 00:00:00 2001 From: higginsw Date: Thu, 16 Feb 2023 10:10:27 -0500 Subject: [PATCH 2/2] add .yml to MANIFEST includes --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 65f36a0..7b5ee4a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -recursive-include mkDOCter *.ico *.js *.css *.png *.html *.eot *.svg *.ttf *.woff +recursive-include mkDOCter *.ico *.js *.css *.png *.html *.eot *.svg *.ttf *.woff *.yml recursive-exclude * __pycache__ recursive-exclude * *.py[co] include TERMS.md