-
Notifications
You must be signed in to change notification settings - Fork 230
Add Pixi setup #613
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
Open
ianhi
wants to merge
4
commits into
matplotlib:main
Choose a base branch
from
ianhi:ian/pixi-setup
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add Pixi setup #613
+68
−33
Conversation
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
Contributor
- Initialize pixi with pyproject format (integrated into pyproject.toml) - Add jupyterlab, yarn, and nodejs dependencies - Enables jlpm for building JavaScript/TypeScript code - Lock file for reproducible builds - Update .gitignore for pixi artifacts Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
- Add pixi as recommended development environment setup - Update all commands to use 'pixi run' prefix - Fix watch command to use 'npm run watch' instead of 'jlpm watch' - Keep conda/mamba instructions as alternative - Clarify that pixi handles both Python and Node.js dependencies - Add note about matplotlib requiring compiled dependencies Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
- Assume JupyterLab by default (most common workflow) - Include watch mode commands in initial setup - Simplify "How to see your changes" section - Move classic notebook setup to end as optional - Group commands more logically - Remove redundant explanations Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
- Ignore .yarn/ directory (yarn cache and plugins) - Ignore package-lock.json (npm lock file) - These are build artifacts that shouldn't be committed Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
martinRenou
approved these changes
Jan 14, 2026
Member
martinRenou
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! No strong opinion on this myself. As long as we don't force devs to use something I'm good 👍🏽
Collaborator
Author
|
will push a few changes I've found necesary now that im using this. then will merge |
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.
adds a pixi setup to make it easier to get a working dev env.
I also find that pixi plays much more nicely with coding agents than conda/mamba
I didn't add the lock file as I think it's mostly bloat for the development pattern of this repo. I'd also like to look into removing yarn.lock as a bloat (hasn't been udpated in 2 years)
🤖 changes are by claude fully directed by me