As you can see from this pull request in the Black code the first stable release is expected for January 2022:
https://github.com/psf/black/pull/2529
I think we can start prepare this great migrations of the Django code so we will be ready when Black 22.0 will be released and we can finally benefit from this change.
We have now more than 2 months to work on this.
All code Django generates will also be Black-formatted (
startproject
, migrations,inspectdb
, etc.), at least if the user has Black installed.
--
You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-develop...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/81687d6f-2ea3-44b4-a9c8-fab71e4e0843n%40googlegroups.com.
I think we can start prepare this great migrations of the Django code so we will be ready when Black 22.0 will be released and we can finally benefit from this change.
Do you have any specific steps in mind? I'm not sot sure how we need to prepare. Implementation, as described in
DEP 0008, should be rather straightforward and I don't think anything needs to be done in advance. We (Fellows and OPS team) should be able to implement it within a few days.
I was thinking we can start right now using black in a branch and see which issue will show up and start fixing them.
I was thinking we can start right now using black in a branch and see which issue will show up and start fixing them.
We don't want to merge multiple commits related to black. According to the "Implementation" section in DEP 0008, we're going to run Black on the entire Django code repository and make a single commit. Running black should not encounter any issues …