-
Notifications
You must be signed in to change notification settings - Fork 19
General build configuration improvements #183
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
Closed
Closed
Changes from 5 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
d4b2c1d
fix: allow 0.6 as version in 0.6rc1
jo-mueller 91652df
Merge pull request #186 from jo-mueller/allow-06
joshmoore 5e521cf
fix: allow 0.6 as version in 0.6rc1
jo-mueller 8eafab8
Consolidate codespell config in pyproject.toml
clbarnes 9ca5e53
Add dev commands to justfile
clbarnes f852414
Remove tox
clbarnes 38b3b49
Fix: use extras correctly in uv run
clbarnes 5c76733
Fix version strings (#193)
DragaDoncila 4dde15b
feat: remove warning about experimental nature (#189)
jo-mueller fbe0f13
Merge branch '0.9dev' into justfile
joshmoore 8c8d074
Add just to dependencies
clbarnes d9e9eab
Update contributing to use uv, just
clbarnes 2213106
More just docs
clbarnes f9c70b6
Merge branch 'main' into justfile
clbarnes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| _: | ||
| just --list | ||
|
|
||
| # Build the specification in the _build/ directory. | ||
| build: | ||
| uv run python pre_build.py | ||
| uv run jupyter book build --html --ci | ||
|
|
||
| # Check spelling in the source files; | ||
| # configured in pyproject.toml. | ||
| spell: | ||
| uv run --extra testing codespell | ||
|
|
||
| # Run all lint commands. | ||
| lint: spell | ||
|
|
||
| # Run schema tests. | ||
| test: | ||
| uv run --extra testing pytest -v |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ | |
| "description": "OME-Zarr version.", | ||
| "type": "string", | ||
| "enum": [ | ||
| "0.6rc0" | ||
| "0.6rc0", | ||
| "0.6" | ||
| ] | ||
| } | ||
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Let's add the actual command to run/build stuff here. These commands are also mentioned in the contributing section of the repo, so that'll have to be updated there, too.
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.
Updated in contribute.md. I would prefer not to document all the recipes here to reduce duplication/ potential for drift. The existing docs tells the user how to access the list themselves.