pyfilesystem2 icon indicating copy to clipboard operation
pyfilesystem2 copied to clipboard

_abc_registry errors with py3.8

Open awais786 opened this issue 5 years ago • 0 comments

With python3.8 tests are failing with this error.

    from typing import Any
  File "/.tox/django22/lib/python3.8/site-packages/typing.py", line 1357, in <module>
    class Callable(extra=collections_abc.Callable, metaclass=CallableMeta):
  File "/.tox/django22/lib/python3.8/site-packages/typing.py", line 1005, in __new__
    self._abc_registry = extra._abc_registry
AttributeError: type object 'Callable' has no attribute '_abc_registry'

python 3.7 is the first release where typing is not released as "provisional".

Please check the for detailed discussion.

awais786 avatar May 03 '20 11:05 awais786