Skip to content

Commit 38e4d92

Browse files
committed
Add versions constraints to types-jsonschema
Newer versions of types-jsonschema indirectly require building with rust, in orchestra, these fail because rustc can't link against the libc
1 parent 3d0ff22 commit 38e4d92

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.orchestra/config/components/revng-python-dependencies.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ requirements: |-
3333
types-PyYAML
3434
types-requests
3535
types-urllib3
36-
types-jsonschema
36+
# This specific versions because newer ones requires maturin, the rust setup tool,
37+
# and inside orchestra it fails to compile because it doesn't link against libc.
38+
types-jsonschema>=4.17.0.10,<4.18.0
3739
3840
# cmake-format executable
3941
cmakelang

0 commit comments

Comments
 (0)