You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a project that uses fastapi and uvicorn which demands h11>=0.8. Latest version of fastapi changed their test suite from requests to httpx. So I had to add httpx to my tests requirements.
Now the problem is, that httpx requires httpcore, which since version 0.16.0 allows for h11==0.14.0, but the current version of httpcore required by httpx doesn't, so I end up having to downgrade the h11==0.14.0 which I have to 0.12.0.
Can the constraint for httpcore be updated to >=0.16.0 here?
The text was updated successfully, but these errors were encountered:
Hi,
I have a project that uses
fastapi
anduvicorn
which demandsh11>=0.8
. Latest version offastapi
changed their test suite fromrequests
tohttpx
. So I had to addhttpx
to my tests requirements.Now the problem is, that
httpx
requireshttpcore
, which since version0.16.0
allows forh11==0.14.0
, but the current version ofhttpcore
required byhttpx
doesn't, so I end up having to downgrade theh11==0.14.0
which I have to0.12.0
.Can the constraint for
httpcore
be updated to>=0.16.0
here?The text was updated successfully, but these errors were encountered: