Use Pixi for CI/CD setup#264
Closed
kylecarow wants to merge 5 commits into
Closed
Conversation
…-facing pip optional deps, instead install those with --group dev
49331fe to
107e7c9
Compare
…akenly run jupyter book start from the top level dir)
Collaborator
Author
|
Superseded by #265 |
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.
Affects
deploy_docsandbuild_and_test, notrelease(yet)Changes to
pyproject.tomldependency-groups, this aligns better with the philosophy herehttps://pydevtools.com/handbook/explanation/what-are-optional-dependencies-and-dependency-groups/
pip install '.[dev]'/pip install fastsim[dev]so I'm not fussed about compatibility changes. You can still install these deps by doingpip install --group dev .orpip install --group dev -e .anyway.pymoooptional-dependency in there commented out, it seems like that would be a sensible optional dependency. The way we reference pymoo in this repo is messy anyway and should generally be cleaned up.project.requires-pythonbumped to allow Python 3.10 through 3.14Workflows use pixi for Rust setup:
deploy_docsandbuild_and_testworkflows to use pixi for Rust installation, Python installation, FASTSim, and extra dependencies. docs workflow uses newdocspixi env that does not include any extra deps beyond what is required.