Skip to content

Commit

Permalink
Do not skip noarch platform
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaretnikov committed Apr 25, 2024
1 parent a563afa commit c07906f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def write_file(filename, s):
# platforms. constructor is cross-friendly, but we're currently
# building only for the current architecture, see the comment in
# get_installer_platform
if p.platform != get_installer_platform():
if p.platform not in ["noarch", get_installer_platform()]:
continue
if p.manager == "pip":
pip_dependencies.append(f"{p.name}=={p.version}")
Expand Down

0 comments on commit c07906f

Please sign in to comment.