diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4612528..d3c6280 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -85,7 +85,7 @@ jobs: build = " ".join(f"{py}-{identifier}_*" for py in PYTHON_VERSIONS if identifier=="manylinux" or py.startswith("cp")) add(f"Linux regular {identifier}", "ubuntu-latest", "x86_64 i686", build) if FULL: - for arch in ("aarch64", "ppc64le", "s390x"): + for arch in ("aarch64", "ppc64le", "riscv64", "s390x"): add(f"Linux {arch} {identifier}", "ubuntu-latest", arch, build, True) build = " ".join(f"{py}-*" for py in PYTHON_VERSIONS) add("Windows regular", "windows-latest", "AMD64 x86", build) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0677b8f..a224b83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ adheres to [Semantic Versioning](https://semver.org/). ### :rocket: Added - Update code with CPython 3.14.2 version +- Build wheels for riscv64 ## [1.1.0] - 2025-11-23