Skip to content

Commit

Permalink
Add default packages for linux-64 to enable remote resolve from mac (#32
Browse files Browse the repository at this point in the history
)
  • Loading branch information
romain-intel authored Jan 11, 2024
1 parent 2bf1495 commit 21eefff
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,17 @@

# Default system dependencies when not specified. Note that the `linux-64` defaults are
# used as default when building on the remote platform.
#
# As an example, you can set it to:
# CONDA_SYS_DEFAULT_PACKAGES = {
# "linux-64": {"__glibc": os.environ.get("CONDA_OVERRIDE_GLIBC", "2.27")},
# }
CONDA_SYS_DEFAULT_PACKAGES = {}
CONDA_SYS_DEFAULT_PACKAGES = from_conf(
"CONDA_SYS_DEFAULT_PACKAGES",
{
"linux-64": {"__glibc": os.environ.get("CONDA_OVERRIDE_GLIBC", "2.27")},
},
)

# Packages to add when building for GPU machines (ie: if there is a GPU resource
# requirement). As an example you can set this to:
Expand Down

0 comments on commit 21eefff

Please sign in to comment.