-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an option to create arch specific, python version independent pkgs #5456
base: main
Are you sure you want to change the base?
Conversation
65657d8
to
0e05755
Compare
CodSpeed Performance ReportMerging #5456 will not alter performanceComparing Summary
|
@@ -2291,6 +2296,18 @@ def copy(self: Self) -> MetaData: | |||
) | |||
return new | |||
|
|||
@property | |||
def python_version_independent(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
def python_version_independent(self): | |
def python_version_independent(self) -> bool: |
|
||
@python_version_independent.setter | ||
def python_version_independent(self, value: bool) -> None: | ||
self.meta.setdefault("build", {})["python_version_independent"] = value |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.meta.setdefault("build", {})["python_version_independent"] = value | |
self.meta.setdefault("build", {})["python_version_independent"] = bool(value) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a test here that asserts that the output package is put into an arch-specific part of the repodata (e.g., linux-64
)? It is not obvious to me from the changes that this would happen, but I am still a conda-build n00b.
Description
Checklist - did you ...
news
directory (using the template) for the next release's release notes?