Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
- id: check-yaml
- id: detect-private-key
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "v2.21.2"
rev: "v2.23.0"
hooks:
- id: pyproject-fmt
- repo: https://github.com/citation-file-format/cffconvert
Expand Down Expand Up @@ -39,7 +39,7 @@ repos:
- id: yamllint
exclude: pre-commit-config.yaml
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.15.14"
rev: "v0.15.15"
hooks:
- id: ruff-format
- id: ruff-check
Expand Down
19 changes: 9 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,14 @@ notebooks = [
]

[tool.setuptools]
package-dir = { "" = "src" }
packages.find.where = [ "src" ]
package-dir = { "" = "src" }

[tool.setuptools_scm]
root = "."
version_file = "src/ome_arrow/_version.py"
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"
version_file = "src/ome_arrow/_version.py"
root = "."

[tool.ruff]
target-version = "py311"
Expand Down Expand Up @@ -129,16 +129,16 @@ lint.per-file-ignores."docs/src/examples/learning_to_fly_with_ome-arrow.py" = [
# ignore typing rules for tests
lint.per-file-ignores."tests/*" = [ "ANN201", "E501", "PLR0913", "PLR2004" ]

[tool.vulture]
paths = [ "src/ome_arrow", "tests" ]
min_confidence = 90

[tool.pytest]
ini_options.pythonpath = [ "." ]

[tool.jupytext]
formats = "ipynb,py:light"

[tool.vulture]
min_confidence = 90
paths = [ "src/ome_arrow", "tests" ]

[tool.uv-dynamic-versioning]
vcs = "git"
style = "semver"
Expand All @@ -151,13 +151,12 @@ pytest
tasks.jupyter.shell = """
jupyter lab
"""
tasks.poster-preview.shell = """
if command -v quarto >/dev/null 2>&1; then
tasks.poster-preview.shell = '''if command -v quarto >/dev/null 2>&1; then
quarto preview docs/presentations/2026-OME-community-meeting/poster.qmd --no-browser
elif [ -x /Applications/quarto/bin/quarto ]; then
/Applications/quarto/bin/quarto preview docs/presentations/2026-OME-community-meeting/poster.qmd --no-browser
else
echo "quarto not found. Install Quarto or add it to PATH."
exit 1
fi
"""
'''
Loading