The title says it all.
I'm using fastapi[tests] in my dev-dependencies, and would like to update to newer black versions as soon as they are released. Since fastapi uses == for black versions, that's not possible.
It's very simple: #2249, I also included an update to the current 20.* version since it's been out for a while now, and ran it over fastapi/, pending_tests/, scripts/, and tests/.
fastapi[test] are meant for tests in the library itself.
If your making your own tests you need to use fastapi[all] which doesn't install black.
Ah, that solves it. Thanks for the info!
Most helpful comment
Ah, that solves it. Thanks for the info!