We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 113d767 commit 4dcc7dcCopy full SHA for 4dcc7dc
minimum_versions/environments/pixi.py
@@ -100,6 +100,12 @@ def parse_pixi_environment(name: str, manifest_path: pathlib.Path | None):
100
else:
101
raise ValueError("unexpected environment type")
102
103
+ unknown_features = [
104
+ name for name in feature_names if name != "default" and name not in all_features
105
+ ]
106
+ if unknown_features:
107
+ raise ValueError(f"unknown features: {', '.join(unknown_features)}")
108
+
109
features = [
110
(
111
get_in([feature, "dependencies"], all_features)
0 commit comments