Skip to content

Commit 06c721c

Browse files
authored
Upgrade to Pants 2.29.0 (#47)
1 parent 58ef796 commit 06c721c

File tree

6 files changed

+414
-415
lines changed

6 files changed

+414
-415
lines changed

.flake8

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[flake8]
2+
# E203 -> whitespace before ':' (conflicts with Black)
3+
# E231 -> Bad trailing comma (conflicts with Black)
4+
# E501 -> line too long (conflicts with Black)
5+
26
extend-ignore:
3-
E203, # whitespace before ':' (conflicts with Black)
4-
E231, # Bad trailing comma (conflicts with Black)
5-
E501, # line too long (conflicts with Black)
7+
E203,
8+
E231,
9+
E501,

.github/workflows/pants.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-24.04
2121
strategy:
2222
matrix:
23-
python-version: [3.9]
23+
python-version: [3.12]
2424
steps:
2525
- uses: actions/checkout@v4
2626
- uses: actions/setup-python@v4

0 commit comments

Comments
 (0)