Skip to content

Commit 18279f7

Browse files
authored
feat: parse console scripts into python.entry_points (#31)
1 parent 62707fd commit 18279f7

10 files changed

+173
-39
lines changed

Cargo.lock

Lines changed: 34 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/pixi-build/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,4 @@ jsonrpc-core = { workspace = true }
4040

4141
[dev-dependencies]
4242
insta = { version = "1.41.1", features = ["yaml", "redactions"] }
43+
toml_edit = { version = "0.22.22" }

crates/pixi-build/src/bin/pixi-build-cmake/cmake.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ impl Protocol for CMakeBuildBackend {
423423
recipe,
424424
finalized_dependencies: None,
425425
finalized_cache_dependencies: None,
426+
finalized_cache_sources: None,
426427
finalized_sources: None,
427428
build_summary: Arc::default(),
428429
system_tools: Default::default(),
@@ -518,6 +519,7 @@ impl Protocol for CMakeBuildBackend {
518519
recipe,
519520
finalized_dependencies: None,
520521
finalized_cache_dependencies: None,
522+
finalized_cache_sources: None,
521523
finalized_sources: None,
522524
build_summary: Arc::default(),
523525
system_tools: Default::default(),

0 commit comments

Comments
 (0)