| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Bumped to 6.0 in preparation for next release.6.0 | Jason R. Coombs | 2014-09-27 | 1 | -1/+1 |
| | | |||||
| * | Always restore os.environ even if an exception occurs. | Jason R. Coombs | 2014-09-26 | 1 | -5/+6 |
| | | |||||
| * | Add docstring | Jason R. Coombs | 2014-09-26 | 1 | -0/+4 |
| | | |||||
| * | Avoid passing None values to os.environ. | Jason R. Coombs | 2014-09-26 | 1 | -4/+7 |
| | | |||||
| * | Meant 'items' | Jason R. Coombs | 2014-09-26 | 1 | -1/+1 |
| | | |||||
| * | Correct test assertion | Jason R. Coombs | 2014-09-26 | 1 | -1/+1 |
| | | |||||
| * | Extracting environment patcher | Jason R. Coombs | 2014-09-26 | 1 | -5/+21 |
| | | |||||
| * | Skip tests if msvc9compiler isn't available. | Jason R. Coombs | 2014-09-26 | 1 | -2/+4 |
| | | |||||
| * | Grab winreg module from distutils.msvc9compiler | Jason R. Coombs | 2014-09-26 | 1 | -7/+5 |
| | | |||||
| * | Move stable import into stdlib imports section | Jason R. Coombs | 2014-09-26 | 1 | -2/+2 |
| | | |||||
| * | Remove unused import | Jason R. Coombs | 2014-09-26 | 1 | -1/+1 |
| | | |||||
| * | Remove excess whitespace | Jason R. Coombs | 2014-09-26 | 1 | -14/+12 |
| | | | | | | --HG-- extra : amend_source : b8e14d29b2a36b84e30e22cf231d0b1730eeb7f4 | ||||
| * | Create global import more traditionally. Now the patched functions are ↵ | Jason R. Coombs | 2014-09-26 | 1 | -5/+6 |
| | | | | | available directly as well. | ||||
| * | Extract patched functions as top-level functions | Jason R. Coombs | 2014-09-26 | 1 | -37/+41 |
| | | |||||
| * | Protect against import errors. | Jason R. Coombs | 2014-09-26 | 1 | -2/+6 |
| | | |||||
| * | Move monkey patch to a separate module | Jason R. Coombs | 2014-09-26 | 2 | -53/+58 |
| | | |||||
| * | Resave with excess whitespace removed | Jason R. Coombs | 2014-09-26 | 1 | -4/+4 |
| | | |||||
| * | Merged in stevedower/setuptools (pull request #83) | Jason R. Coombs | 2014-09-26 | 2 | -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 Dower | 2014-09-25 | 2 | -0/+189 |
| | | | | | | | | | standalone compiler installation and improves the error message for missing VC installation. | ||||
| * | | Fix issue #118: Prevent the egg-info directory from being redundantly ↵ | Jesse Weinstein | 2014-08-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | included in the list of modified files. --HG-- extra : rebase_source : 8bad8bf37ef1fdc59b4c1ba21fcff43d25f9b2be | ||||
| * | | Merge Pull Request #78 correcting regression in Pull Request #76. | Jason R. Coombs | 2014-09-26 | 1 | -1/+1 |
| |\ \ | |||||
| | * | | [Fix/Typo] Fix missing parenthesis in egg_info.py | Hugues Lerebours | 2014-08-18 | 1 | -1/+1 |
| | | | | | | | | | | | | | Syntax error introduced in be37eff86c761a399c1ec98b0e5eeed9a90c9cd7 | ||||
| * | | | Move inline function into an instance method and rename for clarity. | Jason R. Coombs | 2014-09-26 | 1 | -11/+11 |
| | | | | |||||
| * | | | Return the exclusions directly | Jason R. Coombs | 2014-09-26 | 1 | -6/+8 |
| | | | | |||||
| * | | | Incorporate the exclusion path in the _exclude function. | Jason R. Coombs | 2014-09-26 | 1 | -2/+6 |
| | | | | |||||
| * | | | Reorganize imports | Jason R. Coombs | 2014-09-26 | 1 | -2/+3 |
| | | | | |||||
| * | | | Use itertools.product for a cross-product of two iterables | Jason R. Coombs | 2014-09-26 | 1 | -3/+3 |
| | | | | |||||
| * | | | Reindent | Jason R. Coombs | 2014-09-26 | 1 | -2/+2 |
| | | | | |||||
| * | | | Rewrite package traversal as a generator expression | Jason R. Coombs | 2014-09-26 | 1 | -2/+6 |
| | | | | |||||
| * | | | Extract path calculation for paths | Jason R. Coombs | 2014-09-26 | 1 | -3/+2 |
| | | | | |||||
| * | | | Extract method for computing parent packages of a package | Jason R. Coombs | 2014-09-26 | 1 | -4/+13 |
| | | | | |||||
| * | | | Extract method for calculating namespace packages for ↵ | Jason R. Coombs | 2014-09-26 | 1 | -11/+23 |
| | | | | | | | | | | | | | single_version_externally_managed | ||||
| * | | | Add docstring for get_exclusions. Just return the set as it is a sized ↵ | Jason R. Coombs | 2014-09-26 | 1 | -1/+5 |
| | | | | | | | | | | | | | container. | ||||
| * | | | Construct exclusions as a set | Jason R. Coombs | 2014-09-26 | 1 | -3/+3 |
| | | | | |||||
| * | | | Add comment | Jason R. Coombs | 2014-09-26 | 1 | -0/+2 |
| | | | | |||||
| * | | | Extract calculation of base path | Jason R. Coombs | 2014-09-26 | 1 | -2/+3 |
| | | | | |||||
| * | | | Generate the filenames more directly. | Jason R. Coombs | 2014-09-26 | 1 | -15/+11 |
| | | | | |||||
| * | | | Extract method for generating exclude names | Jason R. Coombs | 2014-09-26 | 1 | -9/+17 |
| | | | | |||||
| * | | | Normalize syntax | Jason R. Coombs | 2014-09-26 | 1 | -2/+2 |
| | | | | |||||
| * | | | Merged in mesocody/setuptools (pull request #72) | Jason R. Coombs | 2014-09-26 | 1 | -3/+14 |
| |\ \ \ | |_|/ |/| | | | | | Fix exclude list on python 3.2+ | ||||
| | * | | Chase upstream | Melvyn Sopacua | 2014-08-16 | 17 | -2746/+68 |
| | |\ \ | | |/ | |||||
| | * | | Commit the fix we did when testing python3 | Melvyn Sopacua | 2014-07-05 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | I shall `hg status` before submitting PRs. I shall `hg status` before submitting PRs. I shall `hg status` before submitting PRs. | ||||
| | * | | Fix exclude list on python 3.2+ | Melvyn Sopacua | 2014-07-05 | 1 | -3/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | imp.get_tag() is only available on 3.2+. Since 2<x<3.2 are EOL we shall not worry. We could implement a local get_tag(), but the point is moot: this compilation tactic with __pycache__ subdirs and versioned import files is new to python 3.x, so hasattr() is sufficient. | ||||
| * | | | remove unneeded code from last commit | Randy Syring | 2014-09-20 | 1 | -2/+1 |
| | | | | |||||
| * | | | sdist command: fix case insensitivity when adding some files to filelist | Randy Syring | 2014-09-20 | 3 | -4/+46 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should fix the problem in Bitbucket issue #100. It gives the same behavior for inclusion of default files (README*, etc.) on Windows as Linux. BACKWARDS INCOMPATABILITY: This may result in a backwards incompatible change for users on a case insensitive file system. If they were relying on some files getting included in their distribution due to setuptools defaults, and their files do not have the same case as the files being looked for in setuptools, those files will no longer be included in the package. For example, if a package had a file: readme.rst Previous to this commit, that file would have been included in the distribution as: README.rst But it will now no longer be included at all. To get the file included in the package, it can be added to the package's MANIFEST.in file: include readme.rst Files affected by this change will have a case variant of the files or patterns listed below: README README.txt README.rst setup.py (or whatever your setuptools script is named) setup.cfg test/test*.py | ||||
| * | | | Bumped to 5.9 in preparation for next release. | Jason R. Coombs | 2014-09-18 | 1 | -1/+1 |
| | | | | |||||
| * | | | Backed out changeset: be37eff86c76 | Jason R. Coombs | 2014-08-21 | 1 | -1/+1 |
| | |/ |/| | | | | | Syntax was invalid. | ||||
| * | | Merged in moben/setuptools (pull request #76) | Jason R. Coombs | 2014-08-16 | 1 | -1/+1 |
| |\ \ | | | | | | | | | | make order of lines in top_level.txt deterministic | ||||
| | * | | make order of lines in top_level.txt deterministic | Benedikt Morbach | 2014-08-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | like it was done for requirements and entry_points | ||||
| * | | | Bumped to 5.8 in preparation for next release. | Jason R. Coombs | 2014-08-15 | 1 | -1/+1 |
| | | | | |||||
