-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add error for unsupported pypi dependencies (#1052)
Fixes #1036 With the following pixi toml: ```toml [project] name = "project" channels = ["conda-forge"] platforms = ["linux-64", "osx-arm64"] [dependencies] python = "3.11.8" [pypi-dependencies] timeago = "==1.0.16" [feature.test] platforms = ["linux-64"] [environments] test = ["test"] ``` The environment `test` is only solvable for `linux-64`. However, when trying to solve this lock-file on another platform no python interpreter can be installed for the environment because the environment does not support it. This PR shows a problem that we should fix, see #1051 for that tracking issue.
- Loading branch information
1 parent
1cdf0bc
commit 98be83d
Showing
2 changed files
with
57 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters