diff options
-rw-r--r-- | CHANGES.txt | 1 | ||||
-rwxr-xr-x | setup.py | 4 | ||||
-rw-r--r-- | setuptools.egg-info/dependency_links.txt | 2 | ||||
-rw-r--r-- | setuptools.egg-info/requires.txt | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index ca1bd00c..8cf71846 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,6 +7,7 @@ CHANGES --- * Pull Request #39: Add support for C++ targets from Cython ``.pyx`` files. +* Issue #162: Update dependency on certifi to 1.0.1. --- 3.1 @@ -189,10 +189,10 @@ setup_params = dict( """).strip().splitlines(), extras_require = { "ssl:sys_platform=='win32'": "wincertstore==0.1", - "certs": "certifi==0.0.8", + "certs": "certifi==1.0.1", }, dependency_links = [ - 'https://pypi.python.org/packages/source/c/certifi/certifi-0.0.8.tar.gz#md5=dc5f5e7f0b5fc08d27654b17daa6ecec', + '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', ], scripts = [], diff --git a/setuptools.egg-info/dependency_links.txt b/setuptools.egg-info/dependency_links.txt index b1c9a2c9..0936bf35 100644 --- a/setuptools.egg-info/dependency_links.txt +++ b/setuptools.egg-info/dependency_links.txt @@ -1,2 +1,2 @@ -https://pypi.python.org/packages/source/c/certifi/certifi-0.0.8.tar.gz#md5=dc5f5e7f0b5fc08d27654b17daa6ecec +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 diff --git a/setuptools.egg-info/requires.txt b/setuptools.egg-info/requires.txt index 4fd464d8..24df8544 100644 --- a/setuptools.egg-info/requires.txt +++ b/setuptools.egg-info/requires.txt @@ -4,4 +4,4 @@ wincertstore==0.1 [certs] -certifi==0.0.8
\ No newline at end of file +certifi==1.0.1 |