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 f56c537 commit afd85b4Copy full SHA for afd85b4
minimum_versions/environments/pixi.py
@@ -93,6 +93,16 @@ def parse_pixi_environment(name: str, manifest_path: pathlib.Path | None):
93
94
specs = []
95
warnings = []
96
+
97
+ pypi_dependencies = {
98
+ feature: get_in([feature, "pypi-dependencies"], all_features, default=[])
99
+ for feature in env["features"]
100
+ }
101
+ with_pypi_dependencies = {
102
+ feature: bool(deps) for feature, deps in pypi_dependencies.items() if deps
103
104
+ for feature in with_pypi_dependencies:
105
+ warnings.append((f"feature:{feature}", ["Ignored PyPI dependencies."]))
106
for name, pin in pins.items():
107
spec, warnings_ = parse_spec(name, pin)
108
0 commit comments