Skip to content

Commit bac884e

Browse files
set upper bound for jsonschema version (#1189)
* set upper bound for jsonschema version * Update pyproject.toml --------- Co-authored-by: Pete Gadomski <pete.gadomski@gmail.com>
1 parent 30e34f1 commit bac884e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ test = [
7474
"vcrpy<5",
7575
]
7676
urllib3 = ["urllib3>=1.26"]
77-
validation = ["jsonschema>=4.0.1"]
77+
# jsonschema v4.18.2 breaks validation, and it feels safer to set a ceiling rather than just skip this version. The ceiling should be removed when the v4.18 lineage has settled down and feels safer.
78+
validation = ["jsonschema>=4.0.1,<4.18"]
7879

7980
[project.urls]
8081
homepage = "https://github.com/stac-utils/pystac"

0 commit comments

Comments
 (0)