We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ac7a4d commit 12ccd66Copy full SHA for 12ccd66
.github/workflows/ci.yml
@@ -57,6 +57,6 @@ jobs:
57
enable-cache: true
58
59
- name: Install xarray_sql
60
- run: uv sync --dev -v
+ run: maturin develop --uv
61
- name: Run unit tests
62
run: uv run pytest -m "not integration"
pyproject.toml
@@ -89,3 +89,7 @@ dev = [
89
"pyink>=24.10.1",
90
"maturin>=1.9.1",
91
]
92
+
93
+[tool.uv]
94
+# Rebuild package when any rust files change
95
+cache-keys = [{file = "pyproject.toml"}, {file = "rust/Cargo.toml"}, {file = "**/*.rs"}]
0 commit comments