-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breaking change in beautifulsoup4 4.13 #79
Comments
Unfortunately, this seems to affect further aspects like extracting archives as well and took me quite some time to locate (output with
|
jloehel
added a commit
to jloehel/commoncode
that referenced
this issue
Feb 12, 2025
Fixes: aboutcode-org#79 See: https://git.launchpad.net/beautifulsoup/tree/CHANGELOG#n431 Signed-off-by: Jürgen Löhel <[email protected]>
Thanks @watschi @stefan6419846 this is fixed by @jloehel and then released. |
AyanSinhaMahapatra
added a commit
to aboutcode-org/scancode-toolkit
that referenced
this issue
Feb 14, 2025
There was an issue in copyright scan and other places which was caused by a breaking change in bs4, which is fixed in commoncode with https://github.com/aboutcode-org/commoncode/releases/tag/v32.2.0 Reference: #4129 Reference: aboutcode-org/commoncode#79 Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
6 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
beautifulsoup4 4.13 introduces a breaking change in the text processing module at /src/commoncode/text.py (Link), see #4129
as_unicode(s)
returnsbytes
instead ofstr
starting with 4.13, which in turn breaksis_markup(location)
/is_markup_text(text)
in scancode here.Originally posted by @watschi in #4129
The text was updated successfully, but these errors were encountered: