-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip uninstall afdko fails #241
Comments
The
...even though only the mixed case version of the file name actually exists (i.e. It does that for all of these files:
…but it only looks for the mixed case version (and not the lowercase version) of:
@anthrotype, any idea why this might be happening? |
Is the case even important? Quick command-line tests don’t fail, for instance:
Maybe a file is removed twice and fails the 2nd time around? |
@frankrolf, yes, that's exactly the problem, it's getting removed the first time, and then we get the failure that Miguel reported the second time. It successfully removed |
There are also case-sensitive file systems. |
Oh yes, of course. |
windows is case insensitive too. Linux is case sensitive. |
The
|
@cjchapman do you know what actually gets installed? Is it camel case or all lowercase? Is that true for all platforms? |
@miguelsousa, mixed case is what is actually installed on OS X. I haven't tried any other platforms. |
Then why is the process trying to uninstall the lowercased variants? |
I don't know, that's what I'm trying to figure out. |
This issue seems to be related: pypa/pip#2834 I can confirm that when I step through the optname = self.optionxform(optname.rstrip()) which brings us to this code, also in def optionxform(self, optionstr):
return optionstr.lower() |
I was just cross referencing your list with the contents of setup.py. You singled out |
I missed it earlier. For |
I did the experiment of renaming all the target filenames in @miguelsousa, should I proceed with this workaround? Also what are your thoughts on renaming |
Yes, that seems fine to me. |
renamed mixed case console scripts to lowercase.
looks like it's a known issue of pip (the label says "awaiting PR") |
and this duplicate issue pypa/pip#4771 |
@anthrotype, also pypa/pip#2834, as I mentioned earlier |
At least we know we're not alone in dealing with this problem. :-) |
renamed mixed case console scripts to lowercase.
Fixed by c79e754 |
renamed mixed case console scripts to lowercase.
Running
pip uninstall afdko
fails like this,The text was updated successfully, but these errors were encountered: