Skip to content

Commit

Permalink
Merge pull request conda#9797 from beenje/ppc64
Browse files Browse the repository at this point in the history
Enable ppc64 support
  • Loading branch information
kalefranz authored Apr 9, 2020
2 parents 125413c + a9e64af commit a7ad4df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions conda/base/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"linux-aarch64",
"linux-armv6l",
"linux-armv7l",
"linux-ppc64",
"linux-ppc64le",
"osx-64",
"win-32",
Expand Down
1 change: 1 addition & 0 deletions conda/base/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
'armv6l',
'armv7l',
'aarch64',
'ppc64',
'ppc64le',
}
_arch_names = {
Expand Down
1 change: 1 addition & 0 deletions conda/models/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class Arch(Enum):
armv6l = 'armv6l'
armv7l = 'armv7l'
aarch64 = 'aarch64'
ppc64 = 'ppc64'
ppc64le = 'ppc64le'
z = 'z'

Expand Down

0 comments on commit a7ad4df

Please sign in to comment.