Skip to content

Commit

Permalink
Fix multi-output recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
isuruf committed Aug 12, 2024
1 parent 33dcaf8 commit 98ba801
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions conda_build/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -2304,6 +2304,10 @@ def python_version_independent(self):
or self.noarch_python
)

@python_version_independent.setter
def python_version_independent(self, value: bool) -> None:
self.meta.setdefault("build", {})["python_version_independent"] = value

@property
def noarch(self):
return self.get_value("build/noarch")
Expand Down

0 comments on commit 98ba801

Please sign in to comment.