See https://docs.python.org/3.14/whatsnew/3.14.html on how to resolve this.
Due to how Python 3.14 is doing annotations and in particular being able to inspect __annotations__ we will need to make changes to fix it.
The one line which seems to be causing the failures is:
|
for attr, annotation in sorted(self.__annotations__.items()): |
Example error:
AttributeError: 'FakeParent' object has no attribute '__annotations__'. Did you mean: '__annotate__'?
See https://docs.python.org/3.14/whatsnew/3.14.html on how to resolve this.
Due to how Python 3.14 is doing annotations and in particular being able to inspect
__annotations__we will need to make changes to fix it.The one line which seems to be causing the failures is:
python-gitlab/gitlab/base.py
Line 204 in 1a68f1c
Example error: