Robert Schweikert
17497290e3
- update to version 0.46.0 (shortened): - fixed invalid character (#379) - update to version 0.45.0 (shortened): - change license to LGP v2.1 - allow reuse of WebsocketApp.run_forever (#365) - Parse close frame response correctly when reason present (#354) - Wrap socket.gaierror with subclass of WebsocketException (#352) - Resolve a proxy issue and a connection error (#345) - Allow empty Host header value (#369) - Fix undefined variable (#347) - fix: getting a value with the key 'ca_certs' in sslopt dict (#326) - Add use_system_cabundle.patch to use systems ca bundle file by default (bnc#1076519) OBS-URL: https://build.opensuse.org/request/show/567312 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-websocket-client?expand=0&rev=25
36 lines
1.4 KiB
Diff
36 lines
1.4 KiB
Diff
diff -Naur a/setup.py b/setup.py
|
|
--- a/setup.py 2017-12-24 07:47:39.000000000 +0100
|
|
+++ b/setup.py 2018-01-18 10:54:20.090661863 +0100
|
|
@@ -63,7 +63,6 @@
|
|
packages=["websocket", "websocket.tests"],
|
|
package_data={
|
|
'websocket.tests': ['data/*.txt'],
|
|
- 'websocket': ["cacert.pem"]
|
|
},
|
|
tests_require=tests_require,
|
|
test_suite="websocket.tests"
|
|
diff -Naur a/websocket/_http.py b/websocket/_http.py
|
|
--- a/websocket/_http.py 2017-12-09 08:07:42.000000000 +0100
|
|
+++ b/websocket/_http.py 2018-01-18 10:55:01.854569515 +0100
|
|
@@ -176,8 +176,7 @@
|
|
if os.environ.get('WEBSOCKET_CLIENT_CA_BUNDLE'):
|
|
certPath = os.environ.get('WEBSOCKET_CLIENT_CA_BUNDLE')
|
|
else:
|
|
- certPath = os.path.join(
|
|
- os.path.dirname(__file__), "cacert.pem")
|
|
+ certPath = ssl.get_default_verify_paths().cafile
|
|
if os.path.isfile(certPath) and user_sslopt.get('ca_certs', None) is None \
|
|
and user_sslopt.get('ca_cert', None) is None:
|
|
sslopt['ca_certs'] = certPath
|
|
diff -Naur a/websocket_client.egg-info/SOURCES.txt b/websocket_client.egg-info/SOURCES.txt
|
|
--- a/websocket_client.egg-info/SOURCES.txt 2017-12-30 12:28:30.000000000 +0100
|
|
+++ b/websocket_client.egg-info/SOURCES.txt 2018-01-18 10:54:31.166637627 +0100
|
|
@@ -20,7 +20,6 @@
|
|
websocket/_ssl_compat.py
|
|
websocket/_url.py
|
|
websocket/_utils.py
|
|
-websocket/cacert.pem
|
|
websocket/tests/__init__.py
|
|
websocket/tests/test_cookiejar.py
|
|
websocket/tests/test_websocket.py
|