You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the recently released version of setuptools, when installing my distribution copyingmock, it claims that it provides the extras=['']. Of course, I don't provide the empty-string extra, and the correct metadata should be extras=[]. This seems to be related to using the conditional deps feature, somehow:
$ git bisect start
$ git bisect bad tags/v38.6.0
$ git bisect good tags/v28.8.0
Bisecting: 375 revisions left to test after this (roughly 9 steps)
[2cd7f22eb62b413d65fe4208d66f7e2738f71a56] Correctly honor exist_ok. Ref #1083.
$ git bisect run ./check.py
...
In the recently released version of setuptools, when installing my distribution copyingmock, it claims that it provides the
extras=['']
. Of course, I don't provide the empty-string extra, and the correct metadata should beextras=[]
. This seems to be related to using the conditional deps feature, somehow:To reproduce the issue, you can get the sdist:
Then use
git bisect
with this script:I did bisect and found
b2ea3c4 is the first bad commit.
The text was updated successfully, but these errors were encountered: