-
-
Notifications
You must be signed in to change notification settings - Fork 968
Typing-related Exception in Python 3.5 #1270
Copy link
Copy link
Closed
Description
With the latest version from PyPi I'm getting an exception in Python 3.5 which seems to be related to type hints
Steps to reproduce
python3 -m venv venv_gitpython
. venv_gitpython/bin/activate
pip install gitpython
python3 -c "import git"
Expected behaviour
Import succeeds without error
Actual behaviour
Import fails with
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/felixwidmaier/venv_gitpython/lib/python3.5/site-packages/git/__init__.py", line 42, in <module>
from git.config import GitConfigParser # @NoMove @IgnorePep8
File "/home/felixwidmaier/venv_gitpython/lib/python3.5/site-packages/git/config.py", line 238, in <module>
class GitConfigParser(with_metaclass(MetaParserBuilder, cp.RawConfigParser, object)): # type: ignore ## mypy does not understand dynamic class creation # noqa: E501
File "/home/felixwidmaier/venv_gitpython/lib/python3.5/site-packages/git/config.py", line 279, in GitConfigParser
repo: Union['Repo', None] = None) -> None:
File "/usr/lib/python3.5/typing.py", line 552, in __getitem__
dict(self.__dict__), parameters, _root=True)
File "/usr/lib/python3.5/typing.py", line 512, in __new__
for t2 in all_params - {t1} if not isinstance(t2, TypeVar)):
File "/usr/lib/python3.5/typing.py", line 512, in <genexpr>
for t2 in all_params - {t1} if not isinstance(t2, TypeVar)):
File "/home/felixwidmaier/venv_gitpython/lib/python3.5/site-packages/typing_extensions.py", line 635, in __subclasscheck__
raise TypeError("Literal cannot be used with issubclass().")
TypeError: Literal cannot be used with issubclass().
Tested with Python 3.5.2. The error does not occur with 3.6.9.
I saw that there are already plans to drop support for 3.5 soon, so unless this is an easy-to-fix issue, it's probably not worth spending time on it. However, in this case I think it would be good to officially drop 3.5-support now to avoid confusion.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels