httpx too old version
Closed this issue · 3 comments
need bump httpx version to >=0.27.0
I'm having the same issue. This has to do with the poetry dependency spec, in
pyproject.toml#L42:
[tool.poetry.dependencies]
httpx = "^0.24.1"
The "^0.24.1"
specifier allows only >=0.24.1 and <0.25.0. Ref: Caret requirements - Dependency specification | Documentation | Poetry
Changing it to "^0.24"
will allow a wider range of version (>=0.24, <1.0), and should solve this issue.
Hope this can be solved. Much is appreciated!
@Glavnyuk and @jwang-paradise
Man I really need coffee today, made a mess on comments and didn't reference this issue on the last PR. Can you check if the issue is solved with the last commit on master?
I built this patch and the requirement in the built package has changed:
+ Requires-Dist: httpx (>=0,<1)
- Requires-Dist: httpx (>=0.24.1,<0.25.0)
Definitely allows newer versions of httpx.
But I'm sorry about the mistake in my last comment: the specifier "^0.24"
actually compiled to (>=0,<1), not (>=0.24, <1.0). If httpx versions <0.24 are incompatible, maybe inequality requirements will have to used, i.e. ">=0.24, <1.0"
.
Otherwise it's perfectly ok. Works fine on my project now!