biblib icon indicating copy to clipboard operation
biblib copied to clipboard

No longer works with python 3.10

Open kmccurley opened this issue 2 years ago • 2 comments

This is essentially abandonware. It has a dependency upon collections.Iterable, which was removed in python 3.10.

kmccurley avatar May 01 '23 21:05 kmccurley

In biblib/bib.py, changing the third import to

import collections.abc

and line 97 to read

elif isinstance(str_or_fp_or_iter, collections.abc.Iterable) and 

appears to fix (tested on python 3.11)

conjugateprior avatar May 19 '23 15:05 conjugateprior