#311 Fix installation without pandoc

This commit is contained in:
nvbn
2015-07-27 23:31:06 +03:00
parent dc16600871
commit 44cd1fd7e1
2 changed files with 10 additions and 5 deletions
+5 -1
View File
@@ -1,5 +1,6 @@
#!/usr/bin/env python
from subprocess import call
import os
import re
@@ -28,4 +29,7 @@ call('git commit -am "Bump to {}"'.format(version), shell=True)
call('git tag {}'.format(version), shell=True)
call('git push', shell=True)
call('git push --tags', shell=True)
call('python setup.py sdist bdist_wheel upload', shell=True)
env = os.environ
env['CONVERT_README'] = 'true'
call('python setup.py sdist bdist_wheel upload', shell=True, env=env)