From 5369c9ac29aa460cd05435281037bfbdbee16536 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Mon, 22 May 2017 10:51:02 -0700 Subject: [PATCH] Updated fabfile to use CHANGES.md instead of CHANGES.rst --- fabfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fabfile.py b/fabfile.py index 52345929f..88921550b 100644 --- a/fabfile.py +++ b/fabfile.py @@ -80,11 +80,11 @@ def release_check(): if 'a' in env.version: print("WARNING: alpha release %s" % env.version) - # hacky CHANGES.rst check - with open("CHANGES.rst") as f: + # hacky CHANGES.md check + with open("CHANGES.md") as f: raw_changes = f.read() assert "%s\n---" % env.version in raw_changes, \ - "The current version %s is not in CHANGES.rst" % env.version + "The current version %s is not in CHANGES.md" % env.version if env.version in tags: raise Exception("Already released v. %r" % env.version)