New comment by sabrinasomething on void-packages repository https://github.com/void-linux/void-packages/issues/49347#issuecomment-2005142644 Comment: > Could you provide a sample LaTeX file (and additional files if necessary) which triggers this error? More complete reproduction: 1. Create empty file `test.bib` 2. Create file `test.tex` in the same folder containing ``` \documentclass{article} \usepackage{biblatex} \addbibresource{test.bib} \begin{document} \end{document} ``` 3. Run the following commands in the folder: ``` $ pdflatex test.tex $ biber test ``` The second command will generate the following output: ``` INFO - This is Biber 2.16 INFO - Logfile is 'test.blg' INFO - Reading 'test.bcf' ERROR - Error: Found biblatex control file version 3.10, expected version 3.7. This means that your biber (2.16) and biblatex (3.19) versions are incompatible. See compat matrix in biblatex or biber PDF documentation. INFO - ERRORS: 1 ```