1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-08 19:43:48 -05:00

Add missing miniconda architectures: aarch64, arm64, s390x

This commit is contained in:
Alex Hedges
2022-05-17 15:59:11 -04:00
parent 70b23638f4
commit 25e0ffa67d
13 changed files with 114 additions and 0 deletions

View File

@@ -77,7 +77,10 @@ class SupportedOS(StrEnum):
class SupportedArch(StrEnum):
AARCH64 = "aarch64"
ARM64 = "arm64"
PPC64LE = "ppc64le"
S390X = "s390x"
X86_64 = "x86_64"
X86 = "x86"