Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Modeling after Astropy's technique for bundling libraries, the imports are ↵ | Jason R. Coombs | 2015-12-31 | 1 | -8/+2 |
| | | | | now much cleaner. Thanks @embray. Ref #229. | ||||
* | Update vendoring technique to match that used for packaging. Ref #229. | Jason R. Coombs | 2015-12-31 | 1 | -2/+8 |
| | |||||
* | Merge with master. Ref #229. | Jason R. Coombs | 2015-12-31 | 1 | -8/+10 |
|\ | |||||
| * | Use six for Python 2 compatibility | Jason R. Coombs | 2014-07-05 | 1 | -8/+10 |
| | | |||||
* | | Use except/as, now supported by Python 2.6 | Jason R. Coombs | 2015-01-04 | 1 | -2/+1 |
|/ | |||||
* | Fixed PEP 8 compliancy of the setuptools.command package | Alex Gr?nholm | 2014-06-18 | 1 | -10/+8 |
| | |||||
* | Correct regression in upload_docs in syntax adjustment. Fixes #124. | Jason R. Coombs | 2013-12-15 | 1 | -1/+1 |
| | |||||
* | Use ternary operator to select encoding error behavior. | Jason R. Coombs | 2013-11-27 | 1 | -4/+1 |
| | |||||
* | Use PY3 indicator | Jason R. Coombs | 2013-11-27 | 1 | -1/+1 |
| | |||||
* | Fix pyflakes warnings | Jason R. Coombs | 2013-11-27 | 1 | -4/+3 |
| | |||||
* | Use PY3 from compat module | Jason R. Coombs | 2013-11-27 | 1 | -4/+2 |
| | |||||
* | upload module is no more | Jason R. Coombs | 2013-11-27 | 1 | -5/+1 |
| | |||||
* | Merged upstream changes. | Vinay Sajip | 2013-06-19 | 1 | -1/+3 |
|\ | |||||
| * | Merge Python 3 native support from distribute | Jason R. Coombs | 2013-06-18 | 1 | -2/+2 |
| |\ | |||||
| * \ | Merge Vinay Sajip's unified Python 2/3 support from distribute 3 | Jason R. Coombs | 2013-06-18 | 1 | -55/+73 |
| |\ \ | |||||
| * | | | Changes to support 2.x and 3.x in the same codebase. | Vinay Sajip | 2011-06-20 | 1 | -5/+6 |
| | | | | |||||
* | | | | Misc. updates following 2to3 checks. | Vinay Sajip | 2013-06-17 | 1 | -2/+2 |
| | | | | |||||
* | | | | Initial commit. All tests pass on 2.7, 3.2 and 3.3, though there are some ↵ | Vinay Sajip | 2013-06-15 | 1 | -6/+12 |
| |_|/ |/| | | | | | | | | atexit errors in the multiprocessing module in 2.7/3.2 (seemingly unrelated to setuptools). | ||||
* | | | Update some URLs (packages.python.org -> pythonhosted.org). | Arfrever Frehtes Taifersar Arahesis | 2013-06-11 | 1 | -2/+2 |
| |/ |/| | |||||
* | | Fix some ResourceWarnings. | Arfrever Frehtes Taifersar Arahesis | 2012-12-29 | 1 | -1/+3 |
| | | |||||
* | | Rid unused import. | Stefan H. Holek | 2012-11-12 | 1 | -1/+0 |
| | | |||||
* | | Can't use 'surrogateescape' in upload_docs either. | Stefan H. Holek | 2012-11-12 | 1 | -6/+2 |
| | | |||||
* | | Python 3.0 has no surrogateescape. | stefan | 2012-11-05 | 1 | -1/+1 |
| | | |||||
* | | Miscellaneous updates to the upload_docs command. | Stefan H. Holek | 2012-10-19 | 1 | -54/+74 |
|/ | | | | | | | | a) upload_docs now runs build_sphinx to generate documentation. b) The temporary ZIP file is properly disposed of. c) Auth credentials now work under Python 3. Fixes #326. hg record cannot split hunks, thus the large commit. | ||||
* | make sure all tests passes on all python versions fixes #149 | Tarek Ziade | 2010-05-06 | 1 | -1/+5 |
| | |||||
* | using a py3 marker instead of a try..except | Tarek Ziade | 2010-04-05 | 1 | -2/+5 |
| | |||||
* | proper fix to avoid a syntax error on 2.5 | Tarek Ziade | 2010-04-05 | 1 | -2/+2 |
| | |||||
* | auth=b'Basic ' will throw a SyntaxError on 2.5 | Tarek Ziade | 2010-04-05 | 1 | -1/+1 |
| | |||||
* | Add some compatibility code for upload_docs so it will work in both | Brett Cannon | 2010-01-17 | 1 | -18/+30 |
| | | | | | | | | | Python 2 and Python 3. At this point in manual testing, Python 2.6 still works fine, but Python 3 is getting a 200 from the upload which is not what is wanted; a 301 is what is expected for a successful upload. But at least Python 3 is not throwing any more exceptions. | ||||
* | Use more reasonable variable names. | Brett Cannon | 2010-01-17 | 1 | -4/+4 |
| | |||||
* | Rename variable 'http' to 'conn' as httplib is renamed http in Python | Brett Cannon | 2010-01-17 | 1 | -10/+10 |
| | | | | 3. | ||||
* | Add back in a missing space between "Basic" and the base64-encoded | Brett Cannon | 2010-01-17 | 1 | -2/+2 |
| | | | | credentials for uploading docs. | ||||
* | Change upload_docs so that its use of base64 does not fail under | Brett Cannon | 2010-01-17 | 1 | -2/+8 |
| | | | | | | | | | | Python 3. While base64 accepts a string in Python 2, the module in Python 3 only works with bytes. Changed the code so that base64.encodebytes() is used, else catch the AttributeError and use base64.encodestring(). Not fully tested yet as there is another failure farther down under under Python 3. | ||||
* | Fixed empty folder issue during upload_docs. | Alice Bevan-McGregor | 2009-11-15 | 1 | -1/+1 |
| | |||||
* | Added a upload_docs command to upload project documentation to PyPI's ↵ | Jannis Leidel | 2009-10-07 | 1 | -0/+153 |
packages.python.org |