summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bumped to 3.0.1 in preparation for next release.3.0.1Jason R. Coombs2014-03-062-2/+2
|
* Restore support for Python 2.6 in bootstrap script. Fixes #157.Jason R. Coombs2014-03-062-1/+21
|
* Removing the contributors file. While the project is immensely grateful for ↵Jason R. Coombs2014-03-061-36/+0
| | | | each and every contribution, a flat file of contributors is an extra burden for maintenance and has the potential to leave some contributors unacknowledged. Given the detailed use of the source code tools and references to the issue tracking systems, the actual contributions of each and every contributor, large or small, are transparently described. Thanks go out to all.
* Add an actual curl example (for easier copy/paste).Jason R. Coombs2014-03-061-4/+5
|
* Update documentation to reflect that ez_setup.py moves. Fixes #155.Jason R. Coombs2014-03-061-0/+3
|
* Bumped to 3.1 in preparation for next release.Jason R. Coombs2014-03-064-51/+51
|
* Added tag 3.0 for changeset 8e8c50925f18Jason R. Coombs2014-03-061-0/+1
|
* Issue #156: Fix spelling of __PYVENV_LAUNCHER__ variable.3.0Arfrever Frehtes Taifersar Arahesis2014-03-042-1/+2
|
* Remove excess whitespaceJason R. Coombs2014-03-011-1/+0
|
* Update workaround to reference filed ticket.Jason R. Coombs2014-03-011-1/+5
|
* Remove patching of upload_names (dist_files) - Python 2.6 already does the ↵Jason R. Coombs2014-03-011-22/+0
| | | | right thing.
* Remove unused importJason R. Coombs2014-03-011-1/+0
|
* Remove get_installer_filename (copied from some version of Python now ↵Jason R. Coombs2014-03-011-15/+0
| | | | required to be supplied).
* Delint bdist_wininstJason R. Coombs2014-03-011-33/+5
|
* Update changelogJason R. Coombs2014-02-241-0/+2
|
* Clean some imports.Arfrever Frehtes Taifersar Arahesis2014-02-156-10/+15
|
* Use tempfile.TemporaryDirectory() with Python >=3.2.Arfrever Frehtes Taifersar Arahesis2014-02-152-25/+31
|
* Fixed Issue #125: setuptools leaves a ~/.subversion dir laying aroundPhilip Thiem2014-02-151-7/+47
| | | | | | | | | | | | | | after it completes This is the best that can probably be done. Temporary directories are used for get the svn binary version and to get the initial directory info (for determining if one is, in fact, in a svn working directory) ALSO: The check for SVN was not right. Decided on files to only check for .svn/entries because missing properties just leaves out the external refs. And then incorporated a test on the code to make sure that svn info completed. Test passed on CPytonh 2.x and 2.3 on windows, travis-ci, and travis-ci/mac. Note: There seems to be an issue with pypy and a test.
* 2.3 was never released.Jason R. Coombs2014-02-141-5/+0
|
* Added tag 3.0b1 for changeset faba785e9b9eJason R. Coombs2014-02-111-0/+1
|
* Merge backout of namespace package __init__ module generation; ref #148.3.0b1Jason R. Coombs2014-02-112-27/+7
|\
| * Backed out changeset 28901bac2f2e See #148Jason R. Coombs2014-02-111-27/+27
| | | | | | | | | | | | --HG-- branch : setuptools extra : amend_source : 73cc453f11a0b77f930138eee03b1fc8e69399af
* | Delint site-patchJason R. Coombs2014-02-111-14/+7
| |
* | Issue #7: Generate both tar archive and zip archive.Arfrever Frehtes Taifersar Arahesis2014-02-112-5/+5
| |
* | Normalize whitespace and importsJason R. Coombs2014-02-091-35/+16
| |
* | Reorganize imports and remove excess whitespaceJason R. Coombs2014-02-091-28/+3
| |
* | Remove import *Jason R. Coombs2014-02-091-1/+1
| |
* | Normalize indentation and remove unused importsJason R. Coombs2014-02-091-42/+33
| |
* | Remove import *Jason R. Coombs2014-02-091-1/+2
| |
* | Remove excess whitespace and unused imports.Jason R. Coombs2014-02-091-10/+3
| |
* | Remove import *Jason R. Coombs2014-02-091-2/+3
| |
* | Remove unused import and excess whitespace.Jason R. Coombs2014-02-091-39/+1
| |
* | Remove import (missed in parent commit).Jason R. Coombs2014-02-091-1/+0
| |
* | Removed Features functionality. Fixes #65.Jason R. Coombs2014-02-094-341/+6
| |
* | Updated docs to declare Python requirement prior to installation instructions.Jason R. Coombs2014-02-091-7/+4
| |
* | Updated installation instructions, expanding on new techniques available to ↵Jason R. Coombs2014-02-091-20/+42
| | | | | | | | Windows 8 users and clarifying which technique Mac OS X users should use. Fixes #59.
* | Extract 'archive_context' from _install and _build_eggJason R. Coombs2014-02-091-26/+17
| |
* | Use zip files rather than tar files for source distributions of setuptools ↵Jason R. Coombs2014-02-093-19/+21
| | | | | | | | itself. Fixes #7 for users of Python 2.7.4 and later.
* | Declare support for Python 3.4Jason R. Coombs2014-02-091-0/+1
| |
* | Bumped to 3.0 in preparation for next release.Jason R. Coombs2014-02-092-2/+2
| |
* | Namespace package doc tweaks.PJ Eby2006-04-141-1/+1
| | | | | | | | | | | | --HG-- extra : source : 81bfac3cf9a11fbb52b43cb3106419085ac8aee5 extra : histedit_source : 942f45916acfe482998d0cb7adefc08f095dcf0c
* | Don't eagerly import namespace packages. This was the big reason forPJ Eby2006-04-144-13/+31
| | | | | | | | | | | | | | | | | | branching to 0.7 now, as I wanted this wart gone before anything went into Python 2.5. But it's gone now, yay! --HG-- extra : source : f3c5c19842064dd4a497baef0171aac54464a484 extra : amend_source : 3f79e71eedfc5f37a1813967bb53cf9d92a11919
* | Replace _extractall with the canonical TarFile.extractall.Jason R. Coombs2014-02-091-44/+2
| |
* | Normalize indentation in docstrings and function paramsJason R. Coombs2014-02-091-9/+10
| |
* | Remove debug code, unintentionally committed.Jason R. Coombs2014-02-091-2/+0
| |
* | Neglected to remove another reference to the global 'working_set'Jason R. Coombs2014-02-091-1/+1
| |
* | I checked this syntax, then failed to update the code before committing.Jason R. Coombs2014-02-091-1/+1
| |
* | Moved master working set construction into classmethods of WorkingSet.Jason R. Coombs2014-02-091-27/+44
| |
* | Simplify syntax of for loopJason R. Coombs2014-02-091-3/+3
| |
* | Move commentsJason R. Coombs2014-02-091-6/+13
| |