Closed JeanChristopheMorinPerso closed 9 months ago
And for a reason that seems obscure to me, they don't appear on all feedstocks...
I'm currently getting these with https://github.com/AnacondaRecipes/transformers-feedstock/pull/9 but I'm not seeing them on other feedstocks.
That recipe has some emoji characters:
- 📝 Text, for tasks like text classification, information extraction, question answering, summarization, translation, text generation, in over 100 languages.
- 🖼️ Images, for tasks like image classification, object detection, and segmentation.
- 🗣️ Audio, for tasks like speech recognition and audio classification.
highly likely that those triggered that.
Unfortunately, 3.28.0 introduces new debug logs.
I don't believe this is any new behavior; maybe you can try some older versions to confirm this really is new?
The origin from these log messages is probably in bs4.dammit
which tries a bunch of encoding before trying UTF-8, including those from chardet
's prober.
We probably want to replace all uses of UnicodeDammit
with something that tries UTF-8 first (and then uses UnicodeDammit
or something else if really necessary).
Checklist
What happened?
conda-build 3.28.0 fixed a problem where there was debug logs like
DEBUG:conda_index.index
were printed to stdout.Unfortunately, 3.28.0 introduces new debug logs.
And for a reason that seems obscure to me, they don't appear on all feedstocks...
I'm currently getting these with https://github.com/AnacondaRecipes/transformers-feedstock/pull/9 but I'm not seeing them on other feedstocks.
Conda Info
Conda Config
Conda list
Additional Context
No response