Open LuciMoore opened 1 month ago
Naively I would think that for the Matplotlib warning, it's better to just explicitly set the config directory within the container, i.e. BIBSnet shouldn't be writing to folders outside the container anyways (unless we specifically mount them).
Something like this ?
from pathlib import Path
import os
Path.mkdir(Path.home() / "bibsnet" / "configs") # might need to adjust the permissions via `mode` argument
os.environ['MPLCONFIGDIR'] = Path.home() / "bibsnet" / "configs"
A short summary of what you would like to see in BIBSnet.
Look into common WARNINGs that pop up for folks when running BIBSNet. these shouldn't impact anything, but might be good to either address, suppress the warning, add logging to explain it can be safely ignored, etc:
Do you have any interest in helping implement the feature?
Yes!
Add any additional information or context about the request here.
No response