aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bumped to 1.3.1 in preparation for next release.1.3.1Jason R. Coombs2013-11-072-2/+2
|
* Updated changelogJason R. Coombs2013-11-071-0/+6
|
* Merged in philip_thiem/setuptools (pull request #22)Jason R. Coombs2013-11-071-1/+0
|\ | | | | | | Removed verbose warning from svn_utils.py
| * Removed verbose warning from svn_utils.pyphilip_thiem2013-11-051-1/+0
| |
* | Delint (remove unused imports, excess whitespace, unnecessary syntax, and ↵Jason R. Coombs2013-11-051-19/+2
| | | | | | | | unused variables)
* | Remove svn17_example.zipJason R. Coombs2013-11-051-0/+0
| |
* | Merge pull request #4 from abadger/feature/include-svn-test-dataJason R. Coombs2013-11-051-0/+1
|\ \ | |/ |/| Add svn test data
| * Add svn test dataToshio Kuratomi2013-11-041-0/+1
|/
* Bumped to 1.4 in preparation for next release.Jason R. Coombs2013-11-034-51/+51
|
* Added tag 1.3 for changeset 19873119647dJason R. Coombs2013-11-031-0/+1
|
* Update changelog1.3Jason R. Coombs2013-11-031-0/+1
|
* Merge pull request #3 from abadger/feature/socket-exception-importJason R. Coombs2013-11-031-0/+1
|\ | | | | Import socket.error so the code throws the correct exception
| * Import socket.error so the code throws the correct exceptionToshio Kuratomi2013-10-281-0/+1
| |
* | Update changelogJason R. Coombs2013-11-031-0/+10
| |
* | Merge pull request #2 from abadger/feature/ssl-match-hostname-17997Jason R. Coombs2013-11-031-22/+63
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There's apparently another security issue in the python3 match_hostname code. No CVE has been issued for it yet: http://bugs.python.org/issue17997#msg194950 This merge includes two commits. The first updates the included match_hostname code to reflect what's in the python-3.3.3 and python-3.4 stdlib (with a minor change to preserve python2 compat). The second commit adds a check for the backports.ssl_match_hostname module from pypi: https://pypi.python.org/pypi/backports.ssl_match_hostname If the stdlib doesn't have ssl_match_hostname but backports.ssl_match_hostname exists it uses that code. If neither one are present, then it uses the code included in setuptools. Using backports.ssl_match_hostname helps system packagers and system admins to have a single place to maintain SSL support rather than every package that's copying the match_hostname code. On the other hand, it means that users won't get any fixes before they go into the backports.ssl_match_hostname module. Brandon Rhodes is the owner of that module and Toshio has done the last several releases to make sure that module is current with the match_hostname security issues.
| * | Look for the backports-ssl_match_hostname module from pypi before using our ↵Toshio Kuratomi2013-10-281-0/+9
| | | | | | | | | | | | bundled/backported code
| * | Update ssl_match_hostname to match new stdlib code that fixes a security ↵Toshio Kuratomi2013-10-281-22/+54
| | | | | | | | | | | | issue with IDNA domains.
* | | Bumped to 1.3 in preparation for next release.Jason R. Coombs2013-11-024-50/+50
| | |
* | | Added tag 1.2 for changeset 77921bbe3931Jason R. Coombs2013-11-021-0/+1
| | |
* | | Update changelog1.2Jason R. Coombs2013-11-021-0/+3
| | |
* | | Include wheels in standard release. Fixes #93.Jason R. Coombs2013-11-021-0/+2
| | | | | | | | | | | | | | | --HG-- extra : amend_source : 142fda8f9cdb6612326d2aed5712f8fe86aec8ac
* | | Merge 0.7-maintenance branch (never used).Jason R. Coombs2013-10-300-0/+0
|\ \ \
| * | | Creating branch for 0.7 maintenanceJason R. Coombs2013-07-090-0/+0
| | | | | | | | | | | | | | | | | | | | --HG-- branch : 0.7-maintenance
* | | | Also bump version in ez_setup.pyJason R. Coombs2013-10-301-1/+1
| | | |
* | | | Added tag 1.2b1 for changeset 4c7dc4ae2440Jason R. Coombs2013-10-301-0/+1
| | | |
* | | | Bump to 1.2 in preparation for feature release.1.2b1Jason R. Coombs2013-10-301-1/+1
| | | |
* | | | Update changelogJason R. Coombs2013-10-301-0/+7
| | | |
* | | | Merge with defaultJason R. Coombs2013-10-307-49/+55
|\ \ \ \ | | |/ / | |/| |
| * | | Bumped to 1.1.8 in preparation for next release.Jason R. Coombs2013-10-274-48/+48
| | | |
| * | | Added tag 1.1.7 for changeset cc9b19cd0ec6Jason R. Coombs2013-10-271-0/+1
| | | |
| * | | Skip test when file system encoding is not suitable. Fixes #55 and ↵1.1.7Toshio Kuratomi2013-04-112-1/+6
| | | | | | | | | | | | | | | | Distribute #363.
* | | | Merge with defaultPhilip Thiem2013-09-2838-1747/+1723
|\| | | | | | | | | | | | | | | | | | | --HG-- extra : rebase_source : d9c70d5bebd4290f568c828c5bc3a9b93a817ff2
| * | | Update changelogJason R. Coombs2013-09-231-0/+9
| | | |
| * | | Merged in rigemo/setuptools/patch1 (pull request #18)Jason R. Coombs2013-09-231-3/+5
| |\ \ \ | | | | | | | | | | | | | | | Bug Correction: Avoid double execution when the application throws NameError exception.
| | * | | Bug Correction: Avoid double execution when the application throws NameError ↵Niklas Rigemo2013-09-191-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exception. --HG-- branch : patch1
| | * | | PEP8: Corrected multiple statements on one line (semicolon)Niklas Rigemo2013-09-191-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | --HG-- branch : patch1
| * | | | 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-184-57/+57
| | | | |
| * | | | Added tag 1.1.6 for changeset 5e426bdeb46bJason R. Coombs2013-09-181-0/+1
| | | | |
| * | | | execfile now opens target in binary mode for better compatibility. Fixes ↵1.1.6Jason R. Coombs2013-09-182-1/+8
| | | | | | | | | | | | | | | | | | | | Distribute #349.
| * | | | Adding test capturing Distribute #349Jason R. Coombs2013-09-182-0/+16
| |/ / / | | | | | | | | | | | | | | | | --HG-- extra : amend_source : 2f401317ae94e6291ae91f8da75173781bc4c48c
| * | | Bumped to 1.1.6 in preparation for next release.Jason R. Coombs2013-09-124-44/+44
| | | |
| * | | Added tag 1.1.5 for changeset d9bb58331007Jason R. Coombs2013-09-121-0/+1
| | | |
| * | | Update changelog1.1.5Jason R. Coombs2013-09-121-0/+6
| | | |
| * | | Correct boolean logic in fix for #69Jason R. Coombs2013-09-121-1/+1
| | | |
| * | | Remove excess whitespace. Delint one if statement.Jason R. Coombs2013-09-091-31/+6
| | | |
| * | | Reorganize importsJason R. Coombs2013-09-091-5/+8
| | | |