Skip to content

Commit

Permalink
Use a raw F string for regex in pandoc downloader (#371)
Browse files Browse the repository at this point in the history
* Updated regex to hopefully not provide a regex syntax error on python 3.12

* We are now using a raw F string for the regex
  • Loading branch information
JessicaTegner authored Aug 21, 2024
1 parent 23f6f09 commit 7111c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypandoc/pandoc_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _get_pandoc_urls(version="latest"):
# regex for the binaries
uname = platform.uname()[4]
processor_architecture = "arm" if uname.startswith("arm") or uname.startswith("aarch") else "amd"
regex = re.compile(r"/jgm/pandoc/releases/download/.*(?:"+processor_architecture+"|x86|mac).*\\.(?:msi|deb|pkg)")
regex = re.compile(fr"/jgm/pandoc/releases/download/.*(?:{processor_architecture}|x86|mac).*\.(?:msi|deb|pkg)")
# a list of urls to the binaries
pandoc_urls_list = regex.findall(content.decode("utf-8"))
# actual pandoc version
Expand Down

0 comments on commit 7111c16

Please sign in to comment.