-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: using file url as mapping (#1930)
This fixes the issue reported by our user : https://discord.com/channels/1082332781146800168/1276948298330275922/1276948298330275922 when using this mapping setup : ``` [tool.pixi.project.conda-pypi-map] conda-forge = "file:///path/to/parselmouth/conda-forge.json" ``` pixi will error out because we don't understand file url scheme. ``` × failed to download pypi mapping from file:///path/to/parselmouth/conda-forge.json location ├─▶ builder error for url (file:///path/to/parselmouth/conda-forge.json) ╰─▶ URL scheme is not allowed ``` This PR aims to fix it.
- Loading branch information
Showing
3 changed files
with
110 additions
and
40 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
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