Skip to content
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

Bump black from 23.3.0 to 23.7.0 #369

Merged
merged 2 commits into from
Jul 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 25 additions & 28 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ python = "^3.9"
[tool.poetry.dev-dependencies]
yamllint = "^v1.32.0"
codespell = "^2.2.5"
black = "^23.3"
black = "^23.7"
flake8 = "^6.0.0"
pep8-naming = "^0.13.3"
pytest = "^7.4.0"
Expand Down
4 changes: 2 additions & 2 deletions workflow-templates/check-python-task.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ https://python-poetry.org/docs/#installation
If your project does not already use Poetry, you can initialize the [`pyproject.toml`](https://python-poetry.org/docs/pyproject/) file using these commands:

```
poetry init --python="^3.9" --dev-dependency="black@^23.3.0" --dev-dependency="flake8@^5.0.4" --dev-dependency="pep8-naming@^0.13.3"
poetry init --python="^3.9" --dev-dependency="black@^23.7.0" --dev-dependency="flake8@^5.0.4" --dev-dependency="pep8-naming@^0.13.3"
poetry install
```

If already using Poetry, add the tool using this command:

```
poetry add --dev "black@^23.3.0" "flake8@^5.0.4" "pep8-naming@^0.13.3"
poetry add --dev "black@^23.7.0" "flake8@^5.0.4" "pep8-naming@^0.13.3"
```

Commit the resulting `pyproject.toml` and `poetry.lock` files.
Expand Down
Loading