Skip to content
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
10 changes: 7 additions & 3 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
[flake8]
# E203 -> whitespace before ':' (conflicts with Black)
# E231 -> Bad trailing comma (conflicts with Black)
# E501 -> line too long (conflicts with Black)

extend-ignore:
E203, # whitespace before ':' (conflicts with Black)
E231, # Bad trailing comma (conflicts with Black)
E501, # line too long (conflicts with Black)
E203,
E231,
E501,
2 changes: 1 addition & 1 deletion .github/workflows/pants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: [3.9]
python-version: [3.12]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
Expand Down
Loading
Loading