-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Leave out development package out of lock file #2512
Comments
Hey @ernimd, There currently is no way to skip a package from being included in the lock-file. To understand the issue better, you change the version in the |
No, it's automatic versioning system with The patch version and post commit versions are changing frequently. Would like to leave out development package out of the lock file completely, it's not a dependency, but rather the project itself. Ofc I could just do |
Maybe keeping it in the lockfile, but without version or sha256 info would be better? |
We currently add this to run avoid running a rebuild. We could maybe only rebuild on |
Not sure if got fully what you're saying. Even on |
I'm sorry, let me elaborate. To get rid of the versions we would need to change the environment validation logic. Because we currently use these on every pixi command to validate the proper existence of the lock-file and environment. When we don't have these versions we would need to reinstall on every command if we can't figure the version information out from the lock-file. So to avoid that we would need to do something like, only revalidate the environment on |
Problem description
I'm using
pixi
as primary package manager for development of Python packages. It's nice to get an editable installation out of the box, once the environment is set up, thus I add this in apyproject.toml
:One thing that's annoying about this, that lock file gets updated with every single commit (at least in my versioning setup, where each commit is marked with post:
w.y.z.postx
). Would be nice to have an option to leave this package out of lock file, sopixi.lock
doesn't have to be committed to a repo every single commit. Something along the lines:Or there is another way to achieve this ?
Thanks !
The text was updated successfully, but these errors were encountered: