This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Cheese shop registration stopped working for me recently
Type: behavior Stage:
Components: Distutils Versions: Python 3.4, Python 2.7
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: dstufft, eric.araujo, georg.brandl, tlevine
Priority: normal Keywords:

Created on 2014-04-18 12:04 by tlevine, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
setup.py tlevine, 2014-04-18 12:04 The setup.py of the examples
Messages (4)
msg216781 - (view) Author: Thomas Levine (tlevine) Date: 2014-04-18 12:04
This command used to work just fine for me. ::

    python setup.py register

Now it doesn't. For example, ::

    $ python3 setup.py register
    /usr/lib/python3.3/distutils/dist.py:257: UserWarning: Unknown distribution option: 'install_requires'
      warnings.warn(msg)
    /usr/lib/python3.3/distutils/dist.py:257: UserWarning: Unknown distribution option: 'tests_require'
      warnings.warn(msg)
    running register
    running check
    Registering sheetmusic to http://pypi.python.org/pypi
    Server response (401): Unauthorized

But I can submit just fine with the form at
https://pypi.python.org/pypi?%3Aaction=submit_form,
and the following works once I do that. ::

    python setup.py sdist upload

The attached setup.py file is from this package
https://pypi.python.org/pypi/sheetmusic
msg229593 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2014-10-17 19:34
Is this still a problem? If yes, I would contact the PyPI team directly, this tracker is not the right place for PyPI bugs.

(It is unlikely to be a distutils bug.)
msg229595 - (view) Author: Thomas Levine (tlevine) Date: 2014-10-17 19:54
It has been working for me recently.

Adding to your suggestion that it is probably PyPI: I didn't do anything in particular to fix this, and I think it is more likely that PyPI got fixed than that I upgraded Python (and thus distutils).
msg229598 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2014-10-17 20:16
OK, thanks for the feedback.
History
Date User Action Args
2022-04-11 14:58:02adminsetgithub: 65497
2014-10-17 20:16:53georg.brandlsetstatus: open -> closed

messages: + msg229598
2014-10-17 19:54:24tlevinesetstatus: pending -> open

messages: + msg229595
2014-10-17 19:34:29georg.brandlsetstatus: open -> pending

nosy: + georg.brandl
messages: + msg229593

resolution: third party
2014-04-18 12:04:52tlevinecreate