#311 Fix installation without pandoc
This commit is contained in:
+5
-1
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user