summaryrefslogtreecommitdiff
path: root/ez_setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Bumped to 2.1 in preparation for next release.2.1Jason R. Coombs2014-01-071-1/+1
|
* Bumped to 2.0.3 in preparation for next release.Jason R. Coombs2013-12-291-1/+1
|
* ENH: use #!/usr/bin/env python for the shebang instead of non-working on ↵Yaroslav Halchenko2013-12-171-1/+1
| | | | POSIX systems plain #!python
* Bumped to 2.0.2 in preparation for next release.Jason R. Coombs2013-12-151-1/+1
|
* Bumped to 2.0.1 in preparation for next release.Jason R. Coombs2013-12-151-1/+1
|
* Bumped to 2.1 in preparation for next release.Jason R. Coombs2013-12-071-1/+1
|
* Update documentationJason R. Coombs2013-11-271-4/+4
|
* Use sets to determine presence of imported modules.Jason R. Coombs2013-11-271-3/+3
|
* Remove Python 2.4 compatibility from ez_setup.pyJason R. Coombs2013-11-271-9/+0
|
* Simplify _build_install_args now that Python 2.6 is required.Jason R. Coombs2013-11-241-7/+1
|
* Use modern syntax for exception handling in ez_setup.py. This change will ↵Jason R. Coombs2013-11-241-4/+3
| | | | also prevent Python 2.4 and Python 2.5 users from invoking it.
* Remove Python 2.3 compatibility supportJason R. Coombs2013-11-241-7/+1
|
* Reorder exception handlers to work around warning about 'pkg_resources' ↵Jason R. Coombs2013-11-241-2/+2
| | | | being undefined.
* Remove empty logic branch.Jason R. Coombs2013-11-241-6/+5
|
* Remove obvious comment.Jason R. Coombs2013-11-241-1/+0
|
* Use textwrap.dedent for multiline string. Use new style string formatter.Jason R. Coombs2013-11-241-7/+10
|
* Drop support for Python 2.5 and Python 2.4. Fixes #41.Jason R. Coombs2013-11-241-1/+1
|
* Bumped to 1.4.2 in preparation for next release.Jason R. Coombs2013-11-231-1/+1
|
* Bumped to 1.4.1 in preparation for next release.1.4.1Jason R. Coombs2013-11-231-1/+1
|
* Bumped to 1.5 in preparation for next release.Jason R. Coombs2013-11-171-1/+1
|
* Bumped to 1.4 in preparation for next release.1.4b1Jason R. Coombs2013-11-141-1/+1
|
* Bumped to 1.3.3 in preparation for next release.Jason R. Coombs2013-11-091-1/+1
|
* Bumped to 1.3.2 in preparation for next release.Jason R. Coombs2013-11-071-1/+1
|
* Bumped to 1.3.1 in preparation for next release.1.3.1Jason R. Coombs2013-11-071-1/+1
|
* Bumped to 1.4 in preparation for next release.Jason R. Coombs2013-11-031-1/+1
|
* Bumped to 1.3 in preparation for next release.Jason R. Coombs2013-11-021-1/+1
|
* Also bump version in ez_setup.pyJason R. Coombs2013-10-301-1/+1
|
* Bumped to 1.1.8 in preparation for next release.Jason R. Coombs2013-10-271-1/+1
|
* extract _clean_check callJason R. Coombs2013-09-231-18/+15
|
* Merged in sureshvv/setuptools (pull request #17)Jason R. Coombs2013-09-231-3/+18
|\ | | | | | | Don't leave junk file behind
| * implement for all downloaders and check file existence before removingSuresh V2013-09-171-3/+14
| |
| * Don't leave junk file behindSuresh V.2013-09-171-1/+5
| |
* | Bumped to 1.1.7 in preparation for next release.Jason R. Coombs2013-09-181-1/+1
|/
* Bumped to 1.1.6 in preparation for next release.Jason R. Coombs2013-09-121-1/+1
|
* Bumped to 1.1.5 in preparation for next release.Jason R. Coombs2013-09-071-1/+1
|
* Bumped to 1.1.4 in preparation for next release.Jason R. Coombs2013-09-061-1/+1
|
* Bumped to 1.1.3 in preparation for next release.Jason R. Coombs2013-09-061-1/+1
|
* Bumped to 1.1.2 in preparation for next release.Jason R. Coombs2013-09-031-1/+1
|
* Bumped to 1.1.1 in preparation for next release.1.1.1Jason R. Coombs2013-09-031-1/+1
|
* Merge update to ez_setup.pyJason R. Coombs2013-08-311-3/+13
|\
| * ez_setup.py now takes a --insecure argument to bypass the secure ↵Jason R. Coombs2013-08-311-3/+13
| | | | | | | | downloaders. download_setuptools also now accepts a new keyword argument 'download_factory', enabling programmitic invocation to customize the downloader resolution. Fixes #75. Thanks to Pablo Algarvio for the report and suggestions.
* | Bumped to 1.2 in preparation for next release.Jason R. Coombs2013-08-261-1/+1
|/
* Nest try/except/finally for use on Python 2.4. Fixes #72.1.1Jason R. Coombs2013-08-261-9/+12
|
* MergeJason R. Coombs2013-08-191-3/+14
|\
| * Powershell isn't installed by default on Windows Server 2008. Also it's ↵Jason R. Coombs2013-08-191-3/+14
| | | | | | | | possible that Powershell is present on older systems. Now use direct detection of a Powershell executable to determine viability of that technique for a downloader. Fixes #67.
* | Bumped to 1.1 in preparation for next release.Jason R. Coombs2013-08-171-1/+1
|/
* Restore Python 2.4 compatibility in ez_setupJason R. Coombs2013-08-101-0/+9
|
* Suppress output when checking viability of wget/curl. Fixed viability ↵Jason R. Coombs2013-08-101-4/+10
| | | | assignment and Windows platform detection.
* Use more explicit command-line parametersJason R. Coombs2013-08-101-2/+2
|
* Implemented download using wgetJason R. Coombs2013-08-101-3/+17
|