[issue42818] AttributeError: 'zipimporter' object has no attribute 'find_spec'

2021-01-07 Thread Klaus Ethgen
Klaus Ethgen added the comment: I also tested the original bug and it seems to be gone. -- stage: -> resolved status: open -> closed ___ Python tracker ___ __

[issue42818] AttributeError: 'zipimporter' object has no attribute 'find_spec'

2021-01-07 Thread Klaus Ethgen
Klaus Ethgen added the comment: You are right. Generally I have the installation on devuan Linux, the unstable tree. But... In 2019-03-13 I started to patch this file as many python scripts started to fail due to the fact that they had the find_spec implemented. This was still true in Apr 2

[issue42818] AttributeError: 'zipimporter' object has no attribute 'find_spec'

2021-01-07 Thread Desmond Cheong
Desmond Cheong added the comment: Could you provide some information about the system you're running this on? I might be wrong, but this does seem like an issue with this copy of setuptools. From the Traceback, it seems that line 2196 of /usr/lib/python3/dist-packages/pkg_resources/__init__.

[issue42818] AttributeError: 'zipimporter' object has no attribute 'find_spec'

2021-01-05 Thread Klaus Ethgen
Klaus Ethgen added the comment: I don't know if that is an issue with zipimporter or an issue with a version of setuptools. My knowledge of python is very limited. But from what I can see in the backtrace it is missing find_spec. How ever that reverting is or should be implemented, it seams

[issue42818] AttributeError: 'zipimporter' object has no attribute 'find_spec'

2021-01-04 Thread J.D. Rudie
J.D. Rudie added the comment: Is this an issue with zipimporter, or an issue with a version of setuptools? On the latest version of setuptools, find_spec reverts to find_module, which should be implemented in the 3.9 version of zipimporter unless I'm misunderstanding the issue. -- n

[issue42818] AttributeError: 'zipimporter' object has no attribute 'find_spec'

2021-01-03 Thread Klaus Ethgen
New submission from Klaus Ethgen : I encountered the bug when installing a package with `python3 setup.py install --user`. After that, a second installation failed with this stack trace: ``` Traceback (most recent call last):