| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove Python 2 compatibility | Jason R. Coombs | 2020-08-16 | 1 | -12/+3 |
* | Rename _distutils_importer to _distutils_hack, as it supplies more than just ... | Jason R. Coombs | 2020-07-26 | 1 | -4/+4 |
* | Adjust distutils shim when removing _distutils_importer | Paul Ganssle | 2020-07-13 | 1 | -3/+16 |
* | Remove pkg_resources.py31compat.makedirs() in favor of the stdlib | Jon Dufresne | 2020-02-16 | 1 | -2/+2 |
* | 👹 Feed the hobgoblins (delint). | Jason R. Coombs | 2020-01-19 | 1 | -4/+5 |
* | Remove spurious executable permissions | Miro Hrončok | 2018-07-27 | 1 | -0/+0 |
* | Merge branch 'master' into drop-py26 | Jason R. Coombs | 2017-09-03 | 1 | -31/+42 |
|\ |
|
| * | Use makedirs with future compatibility throughout setuptools. Ref #1083. | Jason R. Coombs | 2017-07-13 | 1 | -3/+3 |
| * | Merge branch 'master' into feature/re-vendor-sadface | Jason R. Coombs | 2017-05-30 | 1 | -27/+31 |
| |\ |
|
| | * | Implement AbstractSandbox as a context manager. | Jason R. Coombs | 2017-05-21 | 1 | -15/+16 |
| | * | Use new style format strings and expand args to variables for better clarity ... | Jason R. Coombs | 2017-05-21 | 1 | -2/+3 |
| | * | Use dedent and left strip to store the template inside the class. | Jason R. Coombs | 2017-05-21 | 1 | -8/+13 |
| | * | Remove extraneous whitespace and empty comment | Jason R. Coombs | 2017-05-21 | 1 | -3/+0 |
| | * | Python 3.6 invalid escape sequence deprecation fixes | Ville Skyttä | 2017-02-24 | 1 | -2/+2 |
| * | | Revert "Merge pull request #933 from pypa/feature/581-depend-not-bundle" | Jason R. Coombs | 2017-02-24 | 1 | -2/+2 |
| |/ |
|
| * | Strip out vendored packages and require them instead. Ref #581. | Jason R. Coombs | 2017-01-01 | 1 | -2/+2 |
| * | In sandbox.run_setup, always ensure that __file__ is str. Fixes #712.issue-704 | Jason R. Coombs | 2016-12-18 | 1 | -1/+8 |
* | | Drop support for Python 2.6, removing lots of compatibility code for a leaner... | Jason R. Coombs | 2016-12-09 | 1 | -4/+0 |
|/ |
|
* | Drop exception support for packages triggering win32com cache generation duri... | Jason R. Coombs | 2016-11-18 | 1 | -8/+0 |
* | Fix quantity of blank lines. | stepshal | 2016-10-19 | 1 | -0/+1 |
* | Fix quantity of blank lines. | stepshal | 2016-10-18 | 1 | -0/+6 |
* | Fix continuation line unaligned for hanging indent. | stepshal | 2016-07-22 | 1 | -1/+1 |
* | Add missing blank lines after class or function definition. | stepshal | 2016-07-21 | 1 | -0/+1 |
* | Put colon-separated compound statement on separate lines. | stepshal | 2016-07-21 | 1 | -4/+8 |
* | Fix missing whitespace around operator. | stepshal | 2016-07-14 | 1 | -3/+3 |
* | Add missing whitespace. | stepshal | 2016-07-14 | 1 | -34/+34 |
* | Fix quantity of blank lines after code object. | stepshal | 2016-07-13 | 1 | -25/+9 |
* | Also hide Cython when hiding setuptools, as setuptools will have imported Cyt...19.6b1 | Jason R. Coombs | 2016-01-24 | 1 | -1/+5 |
* | Always use Python 3 version of map | Jason R. Coombs | 2016-01-16 | 1 | -1/+1 |
* | Modeling after Astropy's technique for bundling libraries, the imports are no... | Jason R. Coombs | 2015-12-31 | 1 | -8/+2 |
* | 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 | -33/+71 |
|\ |
|
| * | Always import for SandboxViolation so it's pickleable. Ref #440. | Jason R. Coombs | 2015-12-13 | 1 | -0/+1 |
| * | Prevent infinite recursion when UnpickleableException occurs in a sandbox con... | Jason R. Coombs | 2015-12-13 | 1 | -2/+4 |
| * | Check for Jython using sys.platform, not os.name | Alex Grönholm | 2015-04-21 | 1 | -1/+1 |
| * | Fix setuptools.sandbox._execfile() with Python 3.1. | Arfrever Frehtes Taifersar Arahesis | 2015-03-30 | 1 | -4/+4 |
| * | Re-use context available in sandbox. | Jason R. Coombs | 2015-02-03 | 1 | -1/+3 |
| * | Wrap unpickleable exceptions in another class. Fixes #329. | Jason R. Coombs | 2015-01-14 | 1 | -5/+19 |
| * | Make attributes private and remove redundant naming. | Jason R. Coombs | 2015-01-14 | 1 | -7/+7 |
| * | Extract Exception saving behavior. | Jason R. Coombs | 2015-01-14 | 1 | -25/+45 |
| * | Use except/as, now supported by Python 2.6 | Jason R. Coombs | 2015-01-04 | 1 | -2/+1 |
* | | Merge with 10.2.1 | Jason R. Coombs | 2015-01-02 | 1 | -26/+144 |
|\ \
| |/ |
|
| * | Ensure setuptools is present in the environment before invoking setup.py from... | Jason R. Coombs | 2014-12-30 | 1 | -0/+2 |
| * | Catch, save, and restore any exceptions across the save_modules context. This... | Jason R. Coombs | 2014-12-29 | 1 | -11/+32 |
| * | Backed out changeset: 40cc1fbecb1c | Jason R. Coombs | 2014-12-29 | 1 | -3/+1 |
| * | Disable purging of distutils/setuptools during sandbox operations. Ref #315. | Jason R. Coombs | 2014-12-28 | 1 | -1/+3 |
| * | Rename function to match intention. | Jason R. Coombs | 2014-12-28 | 1 | -7/+7 |
| * | Correct docstring | Jason R. Coombs | 2014-12-28 | 1 | -5/+5 |
| * | Include distutils in modules hidden | Jason R. Coombs | 2014-12-28 | 1 | -1/+3 |
| * | Extract function for _clear_modules, encapsulating the need for the module na... | Jason R. Coombs | 2014-12-28 | 1 | -5/+10 |