Don't require python2 for releases

This commit is contained in:
Adrian Sampson 2018-05-29 16:07:00 -04:00
parent 9e816a97ff
commit a469b3284e

View file

@ -281,7 +281,7 @@ def prep():
# Build. # Build.
with chdir(BASE): with chdir(BASE):
subprocess.check_call(['python2', 'setup.py', 'sdist']) subprocess.check_call(['python', 'setup.py', 'sdist'])
# Generate Markdown changelog. # Generate Markdown changelog.
cl = changelog_as_markdown() cl = changelog_as_markdown()