-
-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI: Update to Black 22.1.0 #2212
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Black is no longer a beta and has a (more strict) stability policy in place. Changes are expected to happen over years and with updating Python versions (removing the old ones to be exact). The changes in formatting are specialized no-spaces style for simple operands of power operator and better formatting of a compex if statement. Python 3.10 is now among target versions. File which had to be ignored by Black due to a, now fixed, bug in Black is not ignored anymore. In CI, matrix is used to define variables for versions (as in Pylint workflow and workflows with actual matrix). Workflow's on now specifies branches and tags for push.
wenzeslaus
added a commit
to OSGeo/grass-addons
that referenced
this pull request
Mar 30, 2022
- A new version of Click broke Black. The new version of Black fixes the issue. - New stable version of Black (22.1, 22.3) changes some of the code formatting. - Targeting Python >=3.7 adds trailing comma after `**kwargs`. - Strings prefixed by u are replaced by plain strings which are Unicode in Python 3. - Changes applied to all files. - Python 2 files are now ignored (to be fixed or removed in the future). - CI workflow synced to core repo. - See also OSGeo/grass#2212 for the update to stable Black in core repo. - See also OSGeo/grass#2286 for the Click-related update.
ninsbl
pushed a commit
to ninsbl/grass
that referenced
this pull request
Oct 26, 2022
Black is no longer a beta and has a (more strict) stability policy in place. Changes are expected to happen over years and with updating Python versions (removing the old ones to be exact). The changes in formatting are specialized no-spaces style for simple operands of power operator and better formatting of a complex if statement. Python 3.10 is now among target versions. File which had to be ignored by Black due to a, now fixed, bug in Black is not ignored anymore. In CI, matrix is used to define variables for versions (as in Pylint workflow and workflows with actual matrix). Workflow's on now specifies branches and tags for push.
ninsbl
pushed a commit
to ninsbl/grass
that referenced
this pull request
Feb 17, 2023
Black is no longer a beta and has a (more strict) stability policy in place. Changes are expected to happen over years and with updating Python versions (removing the old ones to be exact). The changes in formatting are specialized no-spaces style for simple operands of power operator and better formatting of a complex if statement. Python 3.10 is now among target versions. File which had to be ignored by Black due to a, now fixed, bug in Black is not ignored anymore. In CI, matrix is used to define variables for versions (as in Pylint workflow and workflows with actual matrix). Workflow's on now specifies branches and tags for push.
neteler
pushed a commit
to nilason/grass
that referenced
this pull request
Nov 7, 2023
Black is no longer a beta and has a (more strict) stability policy in place. Changes are expected to happen over years and with updating Python versions (removing the old ones to be exact). The changes in formatting are specialized no-spaces style for simple operands of power operator and better formatting of a complex if statement. Python 3.10 is now among target versions. File which had to be ignored by Black due to a, now fixed, bug in Black is not ignored anymore. In CI, matrix is used to define variables for versions (as in Pylint workflow and workflows with actual matrix). Workflow's on now specifies branches and tags for push.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Black is no longer a beta and has a (more strict) stability policy in place.
Changes are expected to happen over years and with updating Python versions (removing the old ones to be exact).
The changes in formatting are specialized no-spaces style for simple operands of power operator and better formatting of a compex if statement.
Python 3.10 is now among target versions. File which had to be ignored by Black due to a, now fixed, bug in Black is not ignored anymore.
In CI, matrix is used to define variables for versions (as in Pylint workflow and workflows with actual matrix). Workflow's on now specifies branches and tags for push.