diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-14 21:29:55 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-14 21:29:55 -0400 |
commit | d896eb9ee9ea29817ef0084996e6e52d547938b2 (patch) | |
tree | 8faa980552cbd2bc2d0bd2a888b215c2ced6b83f | |
parent | d85061213f0f899826feefd4c45e7222989883b4 (diff) | |
download | external_python_setuptools-d896eb9ee9ea29817ef0084996e6e52d547938b2.tar.gz external_python_setuptools-d896eb9ee9ea29817ef0084996e6e52d547938b2.tar.bz2 external_python_setuptools-d896eb9ee9ea29817ef0084996e6e52d547938b2.zip |
Bump wincertstore to 0.2. Fixes #164.
-rw-r--r-- | CHANGES.txt | 1 | ||||
-rwxr-xr-x | setup.py | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 8cf71846..f5b220d9 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -8,6 +8,7 @@ CHANGES * Pull Request #39: Add support for C++ targets from Cython ``.pyx`` files. * Issue #162: Update dependency on certifi to 1.0.1. +* Issue #164: Update dependency on wincertstore to 0.2. --- 3.1 @@ -188,12 +188,12 @@ setup_params = dict( Topic :: Utilities """).strip().splitlines(), extras_require = { - "ssl:sys_platform=='win32'": "wincertstore==0.1", + "ssl:sys_platform=='win32'": "wincertstore==0.2", "certs": "certifi==1.0.1", }, dependency_links = [ 'https://pypi.python.org/packages/source/c/certifi/certifi-1.0.1.tar.gz#md5=45f5cb94b8af9e1df0f9450a8f61b790', - 'https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.1.zip#md5=2f9accbebe8f7b4c06ac7aa83879b81c', + 'https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2', ], scripts = [], # tests_require = "setuptools[ssl]", |