File tree Expand file tree Collapse file tree 3 files changed +19
-6
lines changed
Expand file tree Collapse file tree 3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" standalone =" no" ?>
22<?eclipse-pydev version =" 1.0" ?><pydev_project >
3- <pydev_property name =" org.python.pydev.PYTHON_PROJECT_INTERPRETER" >Default </pydev_property >
3+ <pydev_property name =" org.python.pydev.PYTHON_PROJECT_INTERPRETER" >ndg-httpsclient-py3 </pydev_property >
44<pydev_property name =" org.python.pydev.PYTHON_PROJECT_VERSION" >python 3.0</pydev_property >
55<pydev_pathproperty name =" org.python.pydev.PROJECT_SOURCE_PATH" >
66<path >/ndg_httpsclient</path >
Original file line number Diff line number Diff line change @@ -8,6 +8,14 @@ of the SSL peer using ``pyasn1``.
88
99Releases
1010========
11+ 0.4.3 (Candidate)
12+ -----
13+ * Minor fix for installation: set minimum release for `` pyasn1 `` to avoid conflicts with Ubuntu
14+ install - see https://github.com/cedadev/ndg_httpsclient/issues/5 and
15+ https://github.com/cedadev/ndg_httpsclient/pull/10 . `` pyasn1 `` also becomes mandatory rather
16+ than optional package for install. - It required by `` cryptography `` anyway which is a
17+ dependency for `` pyOpenSSL `` from version 0.14.
18+
11190.4.2
1220-----
1321 * Fix to bug in `` ndg.httpsclient.utils.open_url `` - duplicate open call.
Original file line number Diff line number Diff line change 1818
1919Releases
2020========
21+ 0.4.3 (Candidate)
22+ -----
23+ * Minor fix for installation: set minimum release for ``pyasn1`` to avoid conflicts with Ubuntu
24+ install - see https://github.com/cedadev/ndg_httpsclient/issues/5 and
25+ https://github.com/cedadev/ndg_httpsclient/pull/10. ``pyasn1`` also becomes mandatory rather
26+ than optional package for install. - It required by ``cryptography`` anyway which is a
27+ dependency for ``pyOpenSSL`` from version 0.14.
28+
21290.4.2
2230-----
2331 * Fix to bug in ``ndg.httpsclient.utils.open_url`` - duplicate open call.
118126
119127setup (
120128 name = 'ndg_httpsclient' ,
121- version = "0.4.2 " ,
129+ version = "0.4.3 " ,
122130 description = 'Provides enhanced HTTPS support for httplib and urllib2 using '
123131 'PyOpenSSL' ,
124132 author = 'Richard Wilkinson and Philip Kershaw' ,
127135 long_description = _long_description ,
128136 license = 'BSD - See ndg/httpsclient/LICENCE file for details' ,
129137 packages = find_packages (),
130- # namespace_packages=NAMESPACE_PKGS,
131- # package_dir={'ndg.httpsclient': 'ndg/httpsclient'},
132138 package_data = {
133139 'ndg.httpsclient' : [
134140 'LICENSE' ,
138144 'test/pki/ca/*.0'
139145 ],
140146 },
141- install_requires = ['PyOpenSSL' ],
142- extras_require = {'subjectAltName_support' : 'pyasn1' },
147+ install_requires = ['PyOpenSSL' , 'pyasn1>=0.1.1' ],
143148 classifiers = [
144149 'Development Status :: 5 - Production/Stable' ,
145150 'Environment :: Console' ,
You can’t perform that action at this time.
0 commit comments