summaryrefslogtreecommitdiff
path: root/setuptools/command/upload_docs.py
Commit message (Expand)AuthorAgeFilesLines
* Remove Python 2 compatibilityJason R. Coombs2020-08-161-10/+6
* 👹 Feed the hobgoblins (delint).Jason R. Coombs2020-01-191-3/+3
* Fix for Python 4: replace unsafe six.PY3 with PY2Hugo2020-01-081-2/+2
* Limit the scope of deprecation of the upload_docs command.Jason R. Coombs2017-06-061-1/+2
* Merge branch 'master' into feature/re-vendor-sadfaceJason R. Coombs2017-05-301-12/+11
|\
| * Extract variables to remove hanging indents.Jason R. Coombs2017-03-111-11/+10
| * Fix documentation upload by fixing content_type in _build_multipart on Python...Florian Schulze2017-03-111-1/+1
* | Revert "Merge pull request #933 from pypa/feature/581-depend-not-bundle"Jason R. Coombs2017-02-241-2/+2
|/
* Strip out vendored packages and require them instead. Ref #581.Jason R. Coombs2017-01-011-2/+2
* Provide forward compatibility for Warehouse as the default repository for the...Jason R. Coombs2016-09-011-0/+5
* Use isinstance() instead of type() for a typecheck.stepshal2016-07-141-1/+1
* Return content type in _build_multipartJason R. Coombs2016-05-311-3/+4
* Replace _build_parts with map and flatten.Jason R. Coombs2016-05-311-10/+9
* Normalize indentJason R. Coombs2016-05-311-16/+16
* Extract method for _build_partJason R. Coombs2016-05-311-2/+7
* Extract method for _build_multipartJason R. Coombs2016-05-311-10/+16
* Extract method for _build_parts.Jason R. Coombs2016-05-311-21/+27
* Use bytes literals and simpler encoding logic when constructing multipart postJason R. Coombs2016-05-311-20/+14
* Use context for closing fileJason R. Coombs2016-05-311-3/+2
* Upload_docs should also resolve passwords from keyring same as upload command.Jason R. Coombs2016-02-121-1/+1
* Remove unused importJason R. Coombs2016-02-121-1/+0
* Modeling after Astropy's technique for bundling libraries, the imports are no...Jason R. Coombs2015-12-311-8/+2
* Update vendoring technique to match that used for packaging. Ref #229.Jason R. Coombs2015-12-311-2/+8
* Merge with master. Ref #229.Jason R. Coombs2015-12-311-2/+1
|\
| * Use except/as, now supported by Python 2.6Jason R. Coombs2015-01-041-2/+1
* | Use six for Python 2 compatibilityJason R. Coombs2014-07-051-8/+10
|/
* Fixed PEP 8 compliancy of the setuptools.command packageAlex Grönholm2014-06-181-10/+8
* Correct regression in upload_docs in syntax adjustment. Fixes #124.Jason R. Coombs2013-12-151-1/+1
* Use ternary operator to select encoding error behavior.Jason R. Coombs2013-11-271-4/+1
* Use PY3 indicatorJason R. Coombs2013-11-271-1/+1
* Fix pyflakes warningsJason R. Coombs2013-11-271-4/+3
* Use PY3 from compat moduleJason R. Coombs2013-11-271-4/+2
* upload module is no moreJason R. Coombs2013-11-271-5/+1
* Merged upstream changes.Vinay Sajip2013-06-191-1/+3
|\
| * Merge Python 3 native support from distributeJason R. Coombs2013-06-181-5/+7
| |\
| | * Merge Vinay Sajip's unified Python 2/3 support from distribute 3Jason R. Coombs2013-06-181-55/+73
| | |\
| | * | Changes to support 2.x and 3.x in the same codebase.Vinay Sajip2011-06-201-5/+6
* | | | Misc. updates following 2to3 checks.Vinay Sajip2013-06-171-2/+2
* | | | Initial commit. All tests pass on 2.7, 3.2 and 3.3, though there are some ate...Vinay Sajip2013-06-151-6/+12
|/ / /
* | | Update some URLs (packages.python.org -> pythonhosted.org).Arfrever Frehtes Taifersar Arahesis2013-06-111-2/+2
| |/ |/|
* | Fix some ResourceWarnings.Arfrever Frehtes Taifersar Arahesis2012-12-291-1/+3
* | Rid unused import.Stefan H. Holek2012-11-121-1/+0
* | Can't use 'surrogateescape' in upload_docs either.Stefan H. Holek2012-11-121-6/+2
* | Python 3.0 has no surrogateescape.stefan@epy2012-11-051-1/+1
* | Miscellaneous updates to the upload_docs command.Stefan H. Holek2012-10-191-54/+74
|/
* make sure all tests passes on all python versions fixes #149Tarek Ziade2010-05-061-1/+5
* using a py3 marker instead of a try..exceptTarek Ziade2010-04-051-2/+5
* proper fix to avoid a syntax error on 2.5Tarek Ziade2010-04-051-2/+2
* auth=b'Basic ' will throw a SyntaxError on 2.5Tarek Ziade2010-04-051-1/+1
* Add some compatibility code for upload_docs so it will work in both"Brett Cannon ext:(%22)2010-01-171-18/+30