Skip to content

Commit 4062639

Browse files
authored
fix: support risvc64 arch (#4)
Fixes #3 Signed-off-by: Frost Ming <me@frostming.com>
1 parent 77dfb37 commit 4062639

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/dep_logic/tags/platform.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ class Arch(Enum):
297297
X86 = "x86"
298298
X86_64 = "x86_64"
299299
S390X = "s390x"
300+
RISCV64 = "riscv64"
300301

301302
def __str__(self) -> str:
302303
return self.value
@@ -308,6 +309,7 @@ def get_minimum_manylinux_minor(self) -> int | None:
308309
Arch.Powerpc64,
309310
Arch.Powerpc64Le,
310311
Arch.S390X,
312+
Arch.RISCV64,
311313
]:
312314
return 17
313315
elif self in [Arch.X86, Arch.X86_64]:

0 commit comments

Comments
 (0)