Skip to content

Commit 0745dc4

Browse files
committed
feat: build wheels for riscv64
1 parent a6e0e9f commit 0745dc4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
build = " ".join(f"{py}-{identifier}_*" for py in PYTHON_VERSIONS if identifier=="manylinux" or py.startswith("cp"))
8686
add(f"Linux regular {identifier}", "ubuntu-latest", "x86_64 i686", build)
8787
if FULL:
88-
for arch in ("aarch64", "ppc64le", "s390x"):
88+
for arch in ("aarch64", "ppc64le", "riscv64", "s390x"):
8989
add(f"Linux {arch} {identifier}", "ubuntu-latest", arch, build, True)
9090
build = " ".join(f"{py}-*" for py in PYTHON_VERSIONS)
9191
add("Windows regular", "windows-latest", "AMD64 x86", build)

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ adheres to [Semantic Versioning](https://semver.org/).
1010
### :rocket: Added
1111

1212
- Update code with CPython 3.14.2 version
13+
- Build wheels for riscv64
1314

1415
## [1.1.0] - 2025-11-23
1516

0 commit comments

Comments
 (0)