Skip to content

Commit b49a3e4

Browse files
authored
fix: parse empty quoted table name (#265)
1 parent 6512eaa commit b49a3e4

File tree

6 files changed

+508
-566
lines changed

6 files changed

+508
-566
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
4949
- name: Install Poetry
5050
shell: bash
51-
run: curl -fsSL https://install.python-poetry.org | python - -y --version 1.2.2
51+
run: curl -fsSL https://install.python-poetry.org | python - -y
5252

5353
- name: Update PATH
5454
if: ${{ matrix.os != 'Windows' }}

.pre-commit-config.yaml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: 22.6.0
3+
rev: 22.12.0
44
hooks:
55
- id: black
66

77
- repo: https://github.com/pycqa/isort
8-
rev: 5.10.1
8+
rev: 5.12.0
99
hooks:
1010
- id: isort
1111
exclude: docs/.*
1212

1313
- repo: https://github.com/pre-commit/pre-commit-hooks
14-
rev: v4.1.0
14+
rev: v4.4.0
1515
hooks:
1616
- id: trailing-whitespace
1717
exclude: ^tests/(toml-test|toml-spec-tests)/.*
@@ -20,36 +20,36 @@ repos:
2020
- id: debug-statements
2121

2222
- repo: https://github.com/asottile/yesqa
23-
rev: v1.3.0
23+
rev: v1.4.0
2424
hooks:
2525
- id: yesqa
2626
additional_dependencies: &flake8_deps
27-
- flake8-broken-line==0.4.0
28-
- flake8-bugbear==22.7.1
29-
- flake8-comprehensions==3.10.0
30-
- flake8-eradicate==1.2.1
31-
- flake8-quotes==3.3.1
32-
- flake8-simplify==0.19.2
33-
- flake8-tidy-imports==4.8.0
34-
- flake8-typing-imports==1.12.0
35-
- flake8-use-fstring==1.3
36-
- pep8-naming==0.13.0
27+
- flake8-broken-line
28+
- flake8-bugbear
29+
- flake8-comprehensions
30+
- flake8-eradicate
31+
- flake8-quotes
32+
- flake8-simplify
33+
- flake8-tidy-imports
34+
- flake8-typing-imports
35+
- flake8-use-fstring
36+
- pep8-naming
3737
exclude: ^tomlkit/items\.py
3838

3939
- repo: https://github.com/asottile/pyupgrade
40-
rev: v2.37.1
40+
rev: v3.3.1
4141
hooks:
4242
- id: pyupgrade
4343
args: [--py37-plus]
4444

4545
- repo: https://github.com/hadialqattan/pycln
46-
rev: v2.0.1
46+
rev: v2.1.3
4747
hooks:
4848
- id: pycln
4949
args: [--all]
5050

5151
- repo: https://github.com/pycqa/flake8
52-
rev: 4.0.1
52+
rev: 5.0.4
5353
hooks:
5454
- id: flake8
5555
additional_dependencies: *flake8_deps

0 commit comments

Comments
 (0)