Skip to content

Commit

Permalink
start implementing cep 20 for abi3 packages
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Jan 15, 2025
1 parent 0116ebb commit 2662450
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/recipe/parser/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,12 @@ pub struct Python {
#[serde(default, skip_serializing_if = "std::ops::Not::not")]
pub use_python_app_entrypoint: bool,

/// Whether the package is Python version independent.
/// This is used for abi3 packages that are not tied to a specific Python version, but
/// still contain compiled code (and thus need to end up in the right subdir).
#[serde(default, skip_serializing_if = "std::ops::Not::not")]
pub version_independent: bool,

/// The relative site-packages path that a Python build _exports_ for other
/// packages to use. This setting only makes sense for the `python` package
/// itself. For example, a python 3.13 version could advertise a
Expand Down

0 comments on commit 2662450

Please sign in to comment.