Skip to content

Commit aaecc47

Browse files
authored
Fix Python 3.9 fastjsonschema compatibility (#1678)
1 parent 72c042a commit aaecc47

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

toolchain/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ dependencies = [
1212
"PyYAML",
1313
"argparse",
1414
"dataclasses",
15-
"fastjsonschema",
15+
"fastjsonschema<2.22; python_version < '3.10'",
16+
"fastjsonschema; python_version >= '3.10'",
1617
"rapidfuzz", # For "did you mean?" typo suggestions
1718

1819
# Build System

0 commit comments

Comments
 (0)