-
Notifications
You must be signed in to change notification settings - Fork 46
Unable to upload to project called "mu" #705
Description
Hi,
I've written a code editor called Mu. See: https://github.com/mu-editor/mu Over the summer I've been supported by the Raspberry Pi Foundation to get Mu to 1.0. It's almost there and I'd like to make it installable via PyPI.
As far as I can tell, mu
isn't a registered name. Unfortunately, if I try to pip install mu
I get the following:
$ pip install mu
Collecting mu
Could not find a version that satisfies the requirement mu (from versions: )
No matching distribution found for mu
Furthermore, I get a 404 from http://pypi.python.org/ if I try visit where the package's page should be (https://pypi.python.org/pypi/mu).
If I try to submit the package I get:
Submitting dist/mu-1.0.0b6.tar.gz to https://upload.pypi.org/legacy/
Upload failed (403): The user 'ntoll' is not allowed to upload to project 'mu'. See https://pypi.org/help#project-name for more information.
error: Upload failed (403): The user 'ntoll' is not allowed to upload to project 'mu'. See https://pypi.org/help#project-name for more information.
The three requirements about invalid names don't appear to apply:
mu
isn't in the standard library,mu
seems innocuous enough to NOT be on the excluded names list,- If it's created by another user, I should be able to see the web page for it.
My username on pypi is ntoll
. Would love to know what the problem is (for example, is there a minimum length limit on names?). Alternatively, is this a bug? Finally, if possible, how do I register and upload my mu
package?
Happy to help in any way that I can. If you need more information just ask..!
Thanks in advance.