Skip to content

Commit

Permalink
Bump black to 24.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
questionlp committed Mar 21, 2024
1 parent d21a9d2 commit 4037170
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit",
"source.sortImports": "explicit",
},
"editor.defaultFormatter": "ms-python.black-formatter"
}
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changes

## 2.9.1

### Development Changes

- Upgrade black from 23.12.1 to 24.3.0

## 2.9.0

### Application Changes
Expand Down
2 changes: 1 addition & 1 deletion app/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# vim: set noai syntax=python ts=4 sw=4:
"""Version module for Wait Wait Reports."""

APP_VERSION = "2.9.0"
APP_VERSION = "2.9.1"
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.black]
required-version = "23.12.1"
required-version = "24.3.0"
target-version = ["py310", "py311", "py312"]
line-length = 88

Expand Down Expand Up @@ -80,7 +80,6 @@ convention = "numpy"
"S101", # use of "assert"
"S102", # use of "exec"
"S106", # possible hardcoded password.
"PGH001", # use of "eval"
]

[tool.ruff.pep8-naming]
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
black==23.12.1
black==24.3.0
ruff==0.1.13
pytest==7.4.4

Expand Down

0 comments on commit 4037170

Please sign in to comment.