

























python-wheel is missing from dependencies
And the "from pathlib2" statements with "from pathlib".
Can you maybe patch the import statements by replacing "import pathlib2" with "import pathlib"?
@MarsSeed pathlib2 is a hard dependency because imports rely on pathlib2 rather than pathlib, without version check. So patching this would require more work than just removing the dependency. If you think it is needed to remove this dependency, you're welcome to submit a patch (maybe upstream if adding a version check to choose between pathlib2 and pathlib).
The requirements.txt should be patched to remove pathlib2, as that is part of the Python stdlib, and this module is only needed on some old Python 3.x versions, not for the current Python 3.8+ releases.
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。
python-wheel should only be in makedepends, not depends.