aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into use-packagingDonald Stufft2014-11-198-67/+62
|\ | | | | | | | | | | | | | | | | Conflicts: .hgtags CHANGES.txt ez_setup.py setuptools.egg-info/requires.txt setuptools/version.py
| * Remove Python 2.5 compatibility for sys.dont_write_bytecodeJason R. Coombs2014-10-252-6/+2
| |
| * Fix #277, data files in symbol link directory are not included issueVictor Lin2014-10-231-1/+1
| | | | | | | | | | --HG-- branch : bugfix-277
| * Correct typoJason R. Coombs2014-10-231-1/+1
| |
| * Bumped to 7.1 in preparation for next release.Jason R. Coombs2014-10-191-1/+1
| |
| * Bumped to 7.0 in preparation for next release.7.0Jason R. Coombs2014-10-191-1/+1
| |
| * Defer importing of wintypes because it doesn't import nicely. See Python ↵Jason R. Coombs2014-10-191-1/+2
| | | | | | | | issue 16396.
| * Decorate hide_file to only run on Windows.Jason R. Coombs2014-10-191-0/+8
| |
| * Declare argtypes and restype on SetFileAttributesW so that it will cast ↵Jason R. Coombs2014-10-192-6/+7
| | | | | | | | Python 2 bytestrings to Unicode automatically.
| * Update docstring to be imperative and incorporate comment. Omit lessons ↵Jason R. Coombs2014-10-191-5/+5
| | | | | | | | about string literals.
| * The name win32 is a misnomer. Use 'windows_support' instead.Jason R. Coombs2014-10-192-2/+2
| |
| * Cache eggs required for building in .eggs dirMarc Abramowitz2014-10-132-2/+38
| | | | | | | | | | | | | | | | | | | | This makes it so that these eggs don't prevent `install_requires` from installing these packages. Fixes ticket #80; workaround for ticket #209 --HG-- branch : put_setup_requires_egg_in_cache_dir_4
| * Bumped to 6.2 in preparation for next release.Jason R. Coombs2014-10-111-1/+1
| |
| * Bumped to 6.1 in preparation for next release.6.1Jason R. Coombs2014-10-111-1/+1
| |
| * Reindent clause. Prefer leading comment to inline.Jason R. Coombs2014-09-291-3/+5
| |
| * Extract variable to be in proximity of its commentJason R. Coombs2014-09-291-2/+4
| |
| * Correct typoJason R. Coombs2014-09-291-1/+1
| |
| * Remove Python 2.5 compatibility methods for zipfilesJason R. Coombs2014-09-291-52/+1
| |
| * Trim excess whitespaceJason R. Coombs2014-09-291-2/+2
| |
| * Bumped to 6.0.3 in preparation for next release.Jason R. Coombs2014-09-291-1/+1
| |
| * Backout 5692cd26a08e; Ref #262.6.0.2b1Jason R. Coombs2014-09-291-1/+1
| |
* | Bump to 7.0 in preparation for next release.7.0b1Jason R. Coombs2014-09-271-1/+1
| |
* | Prefer packaging library if available.Jason R. Coombs2014-09-273-7/+28
| |
* | Fix indentJason R. Coombs2014-09-271-2/+1
| |
* | Merge github pull request #13 (dstufft/setuptools:use-packaging).Jason R. Coombs2014-09-2711-26/+990
|\ \ | |/ |/|
| * Implement PEP 440 by using the packaging libraryDonald Stufft2014-09-255-26/+43
| |
| * Add a vendored copy of packagingDonald Stufft2014-09-256-0/+947
| |
* | Bumped to 6.0.2 in preparation for next release.Jason R. Coombs2014-09-271-1/+1
| |
* | Bumped to 6.0.1 in preparation for next release.6.0.1Jason R. Coombs2014-09-271-1/+1
| |
* | Use rpartition here, essential to the algorithm. Fixes #259.Jason R. Coombs2014-09-271-1/+1
| | | | | | | | | | --HG-- extra : amend_source : d7b3c001b4db616a67793dcc57d5c13e3828ad3a
* | Bumped to 6.1 in preparation for next release.Jason R. Coombs2014-09-271-1/+1
| |
* | Bumped to 6.0 in preparation for next release.6.0Jason R. Coombs2014-09-271-1/+1
| |
* | Always restore os.environ even if an exception occurs.Jason R. Coombs2014-09-261-5/+6
| |
* | Add docstringJason R. Coombs2014-09-261-0/+4
| |
* | Avoid passing None values to os.environ.Jason R. Coombs2014-09-261-4/+7
| |
* | Meant 'items'Jason R. Coombs2014-09-261-1/+1
| |
* | Correct test assertionJason R. Coombs2014-09-261-1/+1
| |
* | Extracting environment patcherJason R. Coombs2014-09-261-5/+21
| |
* | Skip tests if msvc9compiler isn't available.Jason R. Coombs2014-09-261-2/+4
| |
* | Grab winreg module from distutils.msvc9compilerJason R. Coombs2014-09-261-7/+5
| |
* | Move stable import into stdlib imports sectionJason R. Coombs2014-09-261-2/+2
| |
* | Remove unused importJason R. Coombs2014-09-261-1/+1
| |
* | Remove excess whitespaceJason R. Coombs2014-09-261-14/+12
| | | | | | | | | | --HG-- extra : amend_source : b8e14d29b2a36b84e30e22cf231d0b1730eeb7f4
* | Create global import more traditionally. Now the patched functions are ↵Jason R. Coombs2014-09-261-5/+6
| | | | | | | | available directly as well.
* | Extract patched functions as top-level functionsJason R. Coombs2014-09-261-37/+41
| |
* | Protect against import errors.Jason R. Coombs2014-09-261-2/+6
| |
* | Move monkey patch to a separate moduleJason R. Coombs2014-09-262-53/+58
| |
* | Resave with excess whitespace removedJason R. Coombs2014-09-261-4/+4
| |
* | Merged in stevedower/setuptools (pull request #83)Jason R. Coombs2014-09-262-0/+189
|\ \ | | | | | | | | | Adds monkeypatching for msvc9compiler.find_vcvarsall() to look for a standalone compiler installation and improves the error message for missing VC installation.
| * | Adds monkeypatching for msvc9compiler.find_vcvarsall() to look for a ↵Steve Dower2014-09-252-0/+189
| |/ | | | | | | standalone compiler installation and improves the error message for missing VC installation.