Closed harisont closed 5 months ago
Thank you for using bibo and for reporting this issue!
The last commit is from 2 years ago, so I need to do some work to get the project maintainable again. I will try to get to it done in the next few days.
Until then, a workaround is to install setuptools
into the virtual env. I understand you use pipx
, so it should be easy to do with pipx inject bibo setuptools
. Obviously this is just a temporary solution, but I hope it will help you get up and running again with bibo until the issue is fixed properly.
Take your time! I already have a workaround, so my bibliography management (and sanity) is safe for the moment :smile:
Hi @harisont! This should now be fixed. Mind upgrading to v0.1.9 and trying again?
Yep, it works! Thank you for the quick fix
Hi and thanks for a piece of software that really makes my life simpler :smiley:
After upgrading to Python 3.12, I can no longer run the latest bibo 0.1.7 (installed with
pipx
). It fails with:It seems that
pkg_resources
is now deprecated, and that the solution is to replace it withimportlib.metadata
inbibo.py
.However, to make things work on my computer, I also had to change
into
(note that my current import statement is
import importlib.metadata as pkg_resources
)where function
entry_points
(replacingiter_entry_points
?) takes no arguments. I suspect this might break something package-related (I don't have any plugins installed, so I personally don't know), and for this reason I'm not opening a pull request just yet.