summaryrefslogtreecommitdiff
path: root/setuptools/command/upload.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove upload command (no longer relevant on Python 2.6+Jason R. Coombs2013-11-241-183/+0
|
* Merge1.1.4Jason R. Coombs2013-09-071-1/+1
|\
| * Fix boolean test, incorrectly changed. Off-by-one errors are particularly ↵Jason R. Coombs2013-09-071-1/+1
| | | | | | | | ugly with booleans ;) Fixes #77
* | Correct AttributeError in upload command on Python 2.4. Fixes #76Jason R. Coombs2013-09-031-1/+1
| |
* | Remove unused variableJason R. Coombs2013-09-031-1/+0
|/
* Use isinstance for type comparisonJason R. Coombs2013-09-031-1/+1
|
* Remove import *Jason R. Coombs2013-09-031-4/+4
|
* Misc. updates following 2to3 checks.Vinay Sajip2013-06-171-1/+3
|
* Initial commit. All tests pass on 2.7, 3.2 and 3.3, though there are some ↵Vinay Sajip2013-06-151-9/+6
| | | | atexit errors in the multiprocessing module in 2.7/3.2 (seemingly unrelated to setuptools).
* Update some URLs.Arfrever Frehtes Taifersar Arahesis2013-06-111-1/+1
|
* Fix some ResourceWarnings.Arfrever Frehtes Taifersar Arahesis2012-12-291-2/+3
|
* Fix typo in protocol_version. Thanks aclark!Jason R. Coombs2012-04-161-1/+1
|
* Reverting 1a1ab844f03e due to issue 250Guy Rozendorn (guyr2011-10-071-74/+2
|
* Revert 8d1cb51a01b6 because of issue #250Guy Rozendorn (guyr2011-10-071-4/+1
|
* Issue #246guyroz2011-09-221-1/+3
|
* Issue #244 raises ValueError in upload and register commands if using a ↵guyroz2011-09-201-2/+76
| | | | section without a repository value
* Apply patch from pjenvey. Closes #3.Hanno Schlichting2009-07-161-1/+3
|
* Fix for http://bugs.python.org/setuptools/issue5 (backport from trunk)PJ Eby2008-08-211-1/+4
|
* The default ``--index-url`` is now ``http://pypi.python.org/simple``, toPJ Eby2007-09-041-1/+1
| | | | | use the Python Package Index's new simpler (and faster!) REST API. (backport from trunk)
* Fix broken error message for socket error during upload.PJ Eby2006-07-101-1/+1
| | | | (backport from trunk)
* Fix typoPJ Eby2006-03-291-1/+1
|
* Added ``--identity`` option to ``upload`` command.PJ Eby2006-03-291-1/+10
|
* Thanks to Richard Jones, we no longer need to fake out PyPI with a '.zip'PJ Eby2005-08-211-5/+2
| | | | extension for eggs.
* Add informative comment when uploading eggs, to help distinguish them fromPJ Eby2005-07-091-1/+2
| | | | source archives.
* Add upload support to setuptools, and make default downloads of setuptoolsPJ Eby2005-07-071-0/+171
come from PyPI/python.org rather than from telecommunity.com. Bump to version 0.5a7.