refactor: add pixi package and use static version number - #142
Merged
Conversation
traversaro
reviewed
Sep 1, 2026
| python = ">=3.14.0,<3.15" | ||
| pytest = "*" | ||
| ruff = "*" | ||
| vinca.path = "." |
Member
There was a problem hiding this comment.
Why vinca.path instead of vinca?
Contributor
Author
There was a problem hiding this comment.
This is the equivalent of vinca = { path = "." } The direct package name only supports conda matchspecs.
Member
There was a problem hiding this comment.
Ahhhh right, I was confused by the syntax.
This is required to avoid Pixi from picking up the pypi dependencies and the conda dependencies that have been mapped with the package backend.
baszalmstra
force-pushed
the
refactor/pixi-package
branch
from
September 1, 2026 08:19
1953acc to
b22c1d1
Compare
Collaborator
|
I took the liberty to rebase this on #143 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This makes the Pixi workspace conda dependencies only and it allows one to run
pixi global install --path .orpixi add --git https://github.com/RoboStack/vincato install vinca locally.To do this I had to split the pixi.toml and pyproject.toml as otherwise pixi will pickup both the conda and PyPI dependencies. This is going to give a better experience for both
uvandpixiusers in my oppinion.The commands you use don't change. The package is still an editable install when using it locally but non editable when you
pixi publish.