Robert Hofer
Robert Hofer
I just want to add, that with more and more tools allowing the whole config to be in a pyproject.toml, I would like to see this to be the default....
`pip-tools` 6.7.0 is also affected. Last working version is 6.6.2.
```shell # uninstall pip sudo pip uninstall pip # install pip through apt sudo apt install python3-pip # upgrade pip to the latest version python3 -m pip install --user --upgrade...
I was not able to reproduce this on a fresh Ubuntu 22.04 VM.
A fix for the docs was merged in #2378
So I've been having the same issue on an existing Ubuntu 22.04 VM. If I create a new VM, install 1.2.0b3, copy one of my projects to the new VM,...
Not that I know of, sadly. `pytype` (already in the list) is a usable alternative though.
@csbasil I rebased after you approved it. Are there any plans on merging this PR?
> There's an alternative to this on https://github.com/tiangolo/fastapi/pull/5860. Yes, I thought it's not necessary to get the actual type in this case, since `None` is a reserved word anyway. It...
Small script to reproduce: * python 3.11 * FastAPI 0.89 ```py from fastapi import FastAPI, Response app = FastAPI(debug=True) @app.get("/plain-text") def plain_text() -> Response: return Response(content="bla", media_type="text/plain") ``` Running this...