Commit 076e6b32 authored by Jason R. Coombs's avatar Jason R. Coombs

Upload_docs should also resolve passwords from keyring same as upload command.

parent 1e0ecae9
......@@ -2,10 +2,16 @@
CHANGES
=======
20.1.1
------
* Update ``upload_docs`` command to also honor keyring
for password resolution.
20.1
----
Added support for using passwords from keyring in the upload
* Added support for using passwords from keyring in the upload
command. See `the upload docs
<http://pythonhosted.org/setuptools/setuptools.html#upload-upload-source-and-or-egg-distributions-to-pypi>`_
for details.
......
......@@ -8,7 +8,6 @@ PyPI's pythonhosted.org).
from base64 import standard_b64encode
from distutils import log
from distutils.errors import DistutilsOptionError
from distutils.command.upload import upload
import os
import socket
import zipfile
......@@ -19,6 +18,7 @@ from setuptools.extern import six
from setuptools.extern.six.moves import http_client, urllib
from pkg_resources import iter_entry_points
from .upload import upload
errors = 'surrogateescape' if six.PY3 else 'strict'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment