PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Tuesday the 8th of December, 2020

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[07:14:10] <nanonyme> jaraco, right, I was more meaning in general though. Like --no-binary=:all means wheels *except* when universal wheels are not available, then it's sdists
[07:14:57] <nanonyme> It's a tiny little corner-case
[09:51:00] <adiroiban> !logs
[09:51:00] <pmxbot> http://kafka.dcpython.org/channel/pypa
[10:50:02] <graingert> still having trouble with the new resolver on twisted
[17:21:24] <adiroiban> so... Twisted deps was fixed...
[17:21:36] <adiroiban> by removing a dependency that was causing this error
[17:21:51] <adiroiban> but I think that this is a bug in the pip resolver
[17:22:00] <adiroiban> I was running `pip install -e .[dev]`
[17:22:13] <adiroiban> and pip was still search on pypi + cache for various Twisted versions
[17:22:25] <adiroiban> as various tools inside [dev] were depending back on Twisted itself
[17:25:01] <adiroiban> and pip fails with
[17:25:03] <adiroiban> pip/_vendor/resolvelib/resolvers.py", line 287, in _backtrack
[17:25:03] <adiroiban> criterion = self.state.criteria[name].excluded_of([candidate])
[17:25:03] <adiroiban> AttributeError: 'NoneType' object has no attribute 'excluded_of'
[17:25:35] <adiroiban> so even if the deps were broken... I think that pip should exit with a different type of error
[17:27:23] <mcepl> I have a question related to now deprecated command setup.py test … with it my tests for M2Crypto run just fine, but if I try with -munittest discover -v or with pytest neither of those can find binary module. https://bpa.st/FEQQ
[17:28:13] <mcepl> Apparently setup.py test does some magic, which I am not able to reproduce without it. Notice on the top of the paste that *.so* file is present in $PYTHONPATH directory.
[17:37:38] <mcepl> (with setup.py test it obviously works without a problem https://is.gd/Kxz5WR )