We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b513c16 commit 5369c9aCopy full SHA for 5369c9a
fabfile.py
@@ -80,11 +80,11 @@ def release_check():
80
if 'a' in env.version:
81
print("WARNING: alpha release %s" % env.version)
82
83
- # hacky CHANGES.rst check
84
- with open("CHANGES.rst") as f:
+ # hacky CHANGES.md check
+ with open("CHANGES.md") as f:
85
raw_changes = f.read()
86
assert "%s\n---" % env.version in raw_changes, \
87
- "The current version %s is not in CHANGES.rst" % env.version
+ "The current version %s is not in CHANGES.md" % env.version
88
if env.version in tags:
89
raise Exception("Already released v. %r" % env.version)
90
0 commit comments