-
-
Notifications
You must be signed in to change notification settings - Fork 590
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
) |
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: