-
-
Notifications
You must be signed in to change notification settings - Fork 372
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
Latest release breaks hypothesis tests in CPython main branch #1326
Comments
I’m afk, can I have a |
Sorry, I didn't deep debugging (yet). If that helps, tracebacks from above job looks like:
It's this class in Hypothesis: Maybe hypothesis package should add pinning, but it's not clear for me from release notes that was broken here. |
From looking on my phone it looks like the breakage is that we now use the official dataclass transform decorator and they’re applying is a second time. I think that’s something they have to fix, this is just the price of the typing bleeding edge. Has someone opened a ticket over there? |
Essentially switch to PEP 649 / 749 for annotations. Some tests need to be skipped for now, but the rest is working. Fixes #1326
* Restore basic functionality on 3.14[sic] Essentially switch to PEP 649 / 749 for annotations. Some tests need to be skipped for now, but the rest is working. Fixes #1326 * Add news fragment * We have not 3.14 CI yet * Use imprerative xfails instead of skips
See python/cpython#122686. Pinning to "attrs<=23.2.0" - a workaround.
The text was updated successfully, but these errors were encountered: