File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626 - name : Sync documentation dependencies
2727 run : uv sync --locked --only-group doc --no-install-project
2828 - name : Generate API reference stubs
29- run : cargo run --bin stub_gen
29+ run : cargo run --manifest-path Cargo.toml --package v8-python -- bin stub_gen
3030 - name : Build documentation
3131 run : uv run --no-sync zensical build --strict
3232 - name : Upload Pages artifact
Original file line number Diff line number Diff line change 2929 - name : Sync Python tooling
3030 run : uv sync --locked --only-group dev --no-install-project
3131 - name : Generate Python stubs
32- run : cargo run --bin stub_gen
32+ run : cargo run --manifest-path Cargo.toml --package v8-python -- bin stub_gen
3333 - name : Ruff
3434 run : uv run --no-sync ruff check .
3535 - name : Pyright
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ __pycache__/
1111# Distribution / packaging
1212.Python
1313.venv /
14- env /
15- bin /
14+ venv /
15+ / bin /
1616build /
1717develop-eggs /
1818dist /
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ edition = "2024"
77name = " v8_python_lib"
88crate-type = [" cdylib" , " rlib" ]
99
10+ [[bin ]]
11+ name = " stub_gen"
12+ path = " src/bin/stub_gen.rs"
13+
1014[dependencies ]
1115anyhow = " 1.0.102"
1216pyo3 = " 0.28.2"
You can’t perform that action at this time.
0 commit comments