Skip to content

Commit

Permalink
Fix camkes-deps: install orderedset dependency only for old python ve…
Browse files Browse the repository at this point in the history
…rsions

orderedset fails to build in python >= 3.11 as discussed here:
#124

Conditionally including it as a dependency for versions <= 3.10,
bypasses the issue temporarily
  • Loading branch information
Ax9D committed Jun 28, 2024
1 parent f7be6b4 commit 82ab96b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/python-deps/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
'aenum',
'jinja2>=3.0.0',
'ordered-set',
'orderedset', # For older source trees: remove in 0.7.4
"orderedset;python_version<='3.10'", # For older source trees: remove in 0.7.4
'plyplus',
'pyelftools',
'sel4-deps',
Expand Down

0 comments on commit 82ab96b

Please sign in to comment.