Skip to content

Commit cae7553

Browse files
committed
Merge branch 'devel' into issue15
2 parents f7378ed + 741d3f6 commit cae7553

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

.pydevproject

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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>

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ of the SSL peer using ``pyasn1``.
88

99
Releases
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+
1119
0.4.2
1220
-----
1321
* Fix to bug in ``ndg.httpsclient.utils.open_url`` - duplicate open call.

setup.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@
1818
1919
Releases
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+
2129
0.4.2
2230
-----
2331
* Fix to bug in ``ndg.httpsclient.utils.open_url`` - duplicate open call.
@@ -118,7 +126,7 @@
118126

119127
setup(
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',
@@ -127,8 +135,6 @@
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',
@@ -138,8 +144,7 @@
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',

0 commit comments

Comments
 (0)