From ca8f85ebe5ce638f225c5262e2481fdee4c5d63c Mon Sep 17 00:00:00 2001 From: Bianca Severino Date: Tue, 3 Aug 2021 11:45:50 -0400 Subject: [PATCH] fix: add missing graft command to MANIFEST.in --- CHANGELOG.rst | 4 ++++ MANIFEST.in | 5 +++-- edx_name_affirmation/__init__.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aeb0e0d..df64259 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,6 +14,10 @@ Change Log Unreleased ~~~~~~~~~~ +[0.3.1] - 2021-08-03 +~~~~~~~~~~~~~~~~~~~~ +* Update `MANIFEST.in` to include all directories under `edx_name_affirmation`. + [0.3.0] - 2021-08-02 ~~~~~~~~~~~~~~~~~~~~ * Add `use_verified_name_for_certs` field to the VerifiedNameView diff --git a/MANIFEST.in b/MANIFEST.in index b6f5cd0..bda7353 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ include LICENSE include README.rst include CHANGELOG.rst -include requirements/base.in -include requirements/test.in +graft edx_name_affirmation +recursive-include requirements *.in *.txt +global-exclude *.pyc diff --git a/edx_name_affirmation/__init__.py b/edx_name_affirmation/__init__.py index 2a3fd40..213cea3 100644 --- a/edx_name_affirmation/__init__.py +++ b/edx_name_affirmation/__init__.py @@ -2,6 +2,6 @@ Django app housing name affirmation logic. """ -__version__ = '0.3.0' +__version__ = '0.3.1' default_app_config = 'edx_name_affirmation.apps.EdxNameAffirmationConfig' # pylint: disable=invalid-name