You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for all the good work (it is really useful!) but unfortunately your script is broken again (most likely latexmk faults)
Traceback (most recent call last):
File "./arxiv_collector.py", line 378, in <module>
main()
File "./arxiv_collector.py", line 353, in main
version = get_latexmk_version(args.latexmk)
File "./arxiv_collector.py", line 77, in get_latexmk_version
raise ValueError("Bad output of {} --version:\n{}".format(latexmk, out))
ValueError: Bad output of latexmk --version:
Latexmk, John Collins, 17 Apr. 2020. Version 4.69a
the problem is the "." after "Apr."
I quick-fixed it by changing version_re = re.compile(r"Latexmk, John Collins, \d+ \w+\. \d+\. Version (.*)$")
but maybe one should take a deeper look into latexmk to see what they do there (which I didn't manage in the hurry just now)
The text was updated successfully, but these errors were encountered:
Thanks for all the good work (it is really useful!) but unfortunately your script is broken again (most likely latexmk faults)
the problem is the "." after "Apr."
I quick-fixed it by changing
version_re = re.compile(r"Latexmk, John Collins, \d+ \w+\. \d+\. Version (.*)$")
but maybe one should take a deeper look into
latexmk
to see what they do there (which I didn't manage in the hurry just now)The text was updated successfully, but these errors were encountered: