summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bumped to 5.0 in preparation for next release.5.0Jason R. Coombs2014-06-142-2/+2
|
* Update changelogJason R. Coombs2014-06-141-3/+16
|
* Update changelogJason R. Coombs2014-06-141-0/+2
|
* Now that 2to3 is no longer run on the codebase, it's safe for the templates ↵Jason R. Coombs2014-06-143-12/+6
| | | | to be syntactically incorrect (prior to substitution).
* Normalize whitespaceJason R. Coombs2014-06-141-13/+7
|
* Reorganize importsJason R. Coombs2014-06-141-5/+6
|
* Bumped to 3.8.2 in preparation for next release.Jason R. Coombs2014-06-142-2/+2
|
* Added tag 3.8.1 for changeset 40744de29b84Jason R. Coombs2014-06-141-0/+1
|
* Bumped to 3.8.1 in preparation for next release.3.8.1Jason R. Coombs2014-06-142-2/+2
|
* Merge with the rest of 3.7.1Jason R. Coombs2014-06-142-0/+7
|\
| * Added tag 3.7.1 for changeset 9b422fc0b8b9Jason R. Coombs2014-06-021-0/+1
| |
| * Update changelog3.7.1Jason R. Coombs2014-06-021-0/+6
| |
| * Bumped to 3.7.1 in preparation for next release.Jason R. Coombs2014-06-022-2/+2
| |
* | Merge with 3.7.1 (Ref #213)Jason R. Coombs2014-06-141-3/+2
|\ \ | |/
| * Use compat's StringIO. Should fix bitbucket #213Matthew Iversen2014-06-021-3/+2
| | | | | | | | | | | | | | https://bitbucket.org/pypa/setuptools/issue/213/regression-setuptools-37-installation --HG-- extra : source : 182f68beacf5e436609fb7d1064a18279cbbd24a
* | Perform actual symlink detection; alternate approach to answer Pull Request #53.Jason R. Coombs2014-06-011-1/+15
| | | | | | | | | | --HG-- extra : rebase_source : a70141cd6472cd8e4024be4037bfd89e4adcb396
* | Remove excess whitespaceJason R. Coombs2014-06-011-4/+0
| | | | | | | | | | --HG-- extra : rebase_source : db1f9496cdda75a9467fcfb867b82108773b0443
* | Merged in ncoghlan/setuppy-edited-online-with-bitbucket-1401023748153 (pull ↵Jason R. Coombs2014-06-011-1/+1
|\ \ | | | | | | | | | | | | | | | request #54) Change the project URL to BitBucket rather than PyPI
| * | Change the project URL to BitBucket rather than PyPINick Coghlan2014-05-251-1/+1
| | | | | | | | | | | | | | | | | | | | | Currently, the project metadata on PyPI doesn't provide an easy way to navigate to the BitBucket repo. This change replaces the current self-link back to PyPI with the appropriate link to BitBucket. --HG-- branch : ncoghlan/setuppy-edited-online-with-bitbucket-1401023748153
* | | Bumped to 3.9 in preparation for next release.Jason R. Coombs2014-06-012-2/+2
| | |
* | | Added tag 3.8 for changeset 2fa97c06cc01Jason R. Coombs2014-06-011-0/+1
| | |
* | | Update changelog3.8Jason R. Coombs2014-06-011-0/+7
| | |
* | | Use a variable for less busy syntaxJason R. Coombs2014-06-011-2/+3
| | |
* | | generalize fix for issue #197 from 1cd816bb7c933eecd9d8464e054b21c7d5daf2dfJurko Gospodnetić2014-05-121-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | Now the same fix gets applied for Python versions [3.0 - 3.2.2> instead of just 3.1. The underlying distutils issue affected all those vesions and has been fixed in the Python 3.2.2 release. --HG-- extra : rebase_source : fe4dc458edbf83e13b275e02fb90939d9061e206
* | | Bumped to 3.8 in preparation for next release.Jason R. Coombs2014-06-012-2/+2
| |/ |/|
* | Added tag 3.7 for changeset 49bd27eebf21Jason R. Coombs2014-06-011-0/+1
| |
* | Merge (preferring custom constructor for selecting the canonical ↵3.7Jason R. Coombs2014-05-280-0/+0
|\ \ | | | | | | | | | implementation on modern Pythons
| * | simplify ContextualZipFile implementation and avoid DeprecationWarningsJurko Gospodnetić2014-05-282-26/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ContextualZipFile tried to be smart and have its __new__ method return zipfile.ZipFile instances on Python versions supporting the zipfile.ZipFile context manager interface (i.e. only on Python [2.7, 3.0> & 3.2+) while on others it would return an actual ContextualZipFile instance. The new implementation seems much simpler and avoids a DeprecationWarning on Python [3.0, 3.2>. There zipFile.ZipFile's __new__ method implementation is actually inherited from object, and calling object.__new__ with extra parameters has been deprecated since Python 2.6 (it has even been converted to an error since Python 3.3). Notes on why there were no related problems in other Python versions: * Python versions prior to 2.5 were not affected because they did not yet deprecate passing extra parameters to object.__new__. * Python version 2.6 was not affected because there zipfile.ZipFile was implemented as an old-style class and therefore did not get its __new__ method called in the first place. * Python [2.7, 3.0> & 3.2+ - explained above. --HG-- extra : source : 9388cc525f1919672fb916b0e62f80ca581072b7
* | | Suppress arguments to __new__. ZipFile doesn't want them, and object ↵Jason R. Coombs2014-05-282-2/+2
|/ / | | | | | | | | | | | | deprecates them. --HG-- extra : amend_source : e41a2567b4174ef2eff09f3aa3f2a7faf214e054
* | Added tag 3.7b1 for changeset 292dfca15d33Jason R. Coombs2014-05-271-0/+1
| |
* | Update changelog3.7b1Jason R. Coombs2014-05-271-0/+6
|/
* Normalize whitespaceJason R. Coombs2014-05-231-17/+17
|
* Include the build launcher script in setuptools sdist. This helps address ↵Jason R. Coombs2014-05-211-0/+1
| | | | the requirement that all sources be included.
* Use context managerJason R. Coombs2014-05-171-25/+22
| | | | | --HG-- extra : amend_source : 5e98bee2918d9eeb073c8c896a849c5f68da6634
* Patch globals in a function. This technique bypasses the linter warnings ↵Jason R. Coombs2014-05-171-5/+16
| | | | about the names not being present, and allows for better documentation.
* Fix NameError (is this code ever used?).Jason R. Coombs2014-05-171-1/+2
| | | | | --HG-- extra : amend_source : 4361459883522692c4d70715135439819d981d7a
* Modernize syntaxJason R. Coombs2014-05-171-59/+16
| | | | | --HG-- extra : amend_source : eeaee0372ea8d1d39475a722234c03f6a0247722
* Use context manager for brevityJason R. Coombs2014-05-171-4/+1
|
* Use ContextualZipFile and contextlib.closing for archiveutilJason R. Coombs2014-05-171-8/+4
|
* Clean up whitespaceJason R. Coombs2014-05-171-47/+7
|
* Update ContextualZipFile to use a single constructorJason R. Coombs2014-05-172-12/+10
|
* Use context managers in pkg_resourcesJason R. Coombs2014-05-171-10/+5
|
* Use ContextualZipFile for context manager supportJason R. Coombs2014-05-171-5/+22
|
* Replace get_zip_class with a specialized constructor.Jason R. Coombs2014-05-171-9/+17
|
* Use context managerJason R. Coombs2014-05-171-4/+1
|
* Refactor testJason R. Coombs2014-05-171-2/+2
|
* Actually call close on exitJason R. Coombs2014-05-171-1/+1
|
* Use iterables for getting best downloaderJason R. Coombs2014-05-171-6/+4
|
* Move import to the topJason R. Coombs2014-05-171-4/+5
|
* Use context managers to reliably close filesJason R. Coombs2014-05-171-22/+10
|