We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64240e6 commit 033e23eCopy full SHA for 033e23e
CONTRIBUTING.md
@@ -34,6 +34,10 @@ source .venv/bin/activate
34
uv sync --dev
35
```
36
37
+> [!TIP]
38
+> - If sync fails with `missing field 'version'`, you may need to delete lockfile and rerun `rm uv.lock && uv sync --dev`.
39
+> - If sync fails with failed compilation, you may need to install clang and rerun `uv sync --dev`.
40
+
41
### Running Tests
42
43
```bash
src/graph_sitter/testing/models.py
@@ -26,7 +26,7 @@
26
27
try:
28
REPO_ID_TO_URL = json.loads((TEST_DIR / "repos" / "repos.json").read_text())
29
-except FileNotFoundError:
+except (FileNotFoundError, json.decoder.JSONDecodeError):
30
REPO_ID_TO_URL = {}
31
if TYPE_CHECKING:
32
from graph_sitter.codemod import Codemod3
0 commit comments