Skip to content

Commit 5369c9a

Browse files
committed
Updated fabfile to use CHANGES.md instead of CHANGES.rst
1 parent b513c16 commit 5369c9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fabfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ def release_check():
8080
if 'a' in env.version:
8181
print("WARNING: alpha release %s" % env.version)
8282

83-
# hacky CHANGES.rst check
84-
with open("CHANGES.rst") as f:
83+
# hacky CHANGES.md check
84+
with open("CHANGES.md") as f:
8585
raw_changes = f.read()
8686
assert "%s\n---" % env.version in raw_changes, \
87-
"The current version %s is not in CHANGES.rst" % env.version
87+
"The current version %s is not in CHANGES.md" % env.version
8888
if env.version in tags:
8989
raise Exception("Already released v. %r" % env.version)
9090

0 commit comments

Comments
 (0)