-
-
Notifications
You must be signed in to change notification settings - Fork 593
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incompatibility with httpx 0.28.0 #1446
Comments
If anyone is experiencing this problem, simply fix your version of For example: |
I think this is a bad solution, as other libraries may require newer version or have another constraint. wsdl_client = httpx.Client(
verify=sslcontext,
timeout=HTTP_TIMEOUT,
)
httpx_client = httpx.AsyncClient(verify=sslcontext,
timeout=HTTP_TIMEOUT)
transport = AsyncTransport(client=httpx_client, wsdl_client=wsdl_client)
zclient = ZeepClient(
wsdl_file, transport=transport,
service_name=bind_soap_service, port_name=bind_soap_port
) |
When will the update be? |
Hi @ba1dr Could you please at least tell us whether there is any plan to fix this incompatibility issue or not? Thanks |
I literally have no idea, as I am just the same user of this library as you. Looking at the past releases timeline I can only conclude that the author is busy and this library is semi-abandoned. Perhaps eventually this will be fixed, but at the moment the best we can do is either override this issue with one of the examples above or make a fork and fix it for yourself. |
Hi @ba1dr Oops, sorry for that. I don’t know why I came to the conclusion you were the developer. My apologies.
Fully agree with you. Let’s see. Cheers |
If I understand correctly, I tried both of the above suggestions in the manifest.json in the \config\custom_components\kingspan_watchman_sensit folder, but each time I restarted after the change the intergration I receive an error. thanks in advance for any direction |
That doesn’t work for Home Assistant for example which requires latest httpx. The code from @ba1dr works well and it’s what I am doing in my HA integration. |
Since version 0.28.0 of httpx
The deprecated proxies argument has now been removed.
:python-zeep/src/zeep/transports.py
Lines 186 to 195 in 41a5115
The text was updated successfully, but these errors were encountered: