Skip to content

Commit 7f388c7

Browse files
authored
Merge pull request #403 from faster-cpython/remove-tomli
Remove dependency on tomli
2 parents 7777c18 + 1cef989 commit 7f388c7

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

bench_runner/config.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,9 @@
44

55
import functools
66
from pathlib import Path
7+
import tomllib
78
from typing import Any
89

9-
try:
10-
import tomllib
11-
except ImportError:
12-
import tomli as tomllib # type: ignore
13-
1410

1511
from . import runners
1612

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ dependencies = [
2121
"rich-argparse==1.7.0",
2222
"ruamel.yaml==0.18.10",
2323
"scour==0.38.2",
24-
"tomli==2.0.1",
2524
"wheel",
2625
]
2726
dynamic = ["version"]

0 commit comments

Comments
 (0)