From c79079347cc16014efd81589cb37c8852d782f9a Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Fri, 9 Dec 2016 11:18:05 -0800 Subject: [PATCH] Tweak for new invocations release tasks --- tasks.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tasks.py b/tasks.py index ae2dfa0..3a2fc06 100644 --- a/tasks.py +++ b/tasks.py @@ -1,3 +1,5 @@ +from os.path import join + from invocations import docs from invocations.testing import test, integration, watch_tests from invocations.packaging import release @@ -13,5 +15,9 @@ ns.configure({ 'packaging': { 'sign': True, 'wheel': True, + 'changelog_file': join( + docs.ns.configuration()['sphinx']['source'], + 'changelog.rst', + ), }, })