Skip to content

Commit e8c40b9

Browse files
Use the latest version of pandoc when building pypandoc_binary, instead of hardcoding the version number (#376)
1 parent 7111c16 commit e8c40b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup_binary.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def finalize_options(self):
3535
def run(self):
3636
from pypandoc.pandoc_download import download_pandoc
3737
targetfolder = os.path.join(os.path.dirname(os.path.realpath(__file__)), "pypandoc", "files")
38-
download_pandoc(targetfolder=targetfolder, version="2.19.2")
38+
download_pandoc(targetfolder=targetfolder)
3939

4040

4141
cmd_classes = {'download_pandoc': DownloadPandocCommand}

0 commit comments

Comments
 (0)