diff --git a/README.md b/README.md index 1ca986f..c39c0f4 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ native riscv64 hardware, with the goal of maintaining a riscv64-specific package repository for projects where upstream are not yet ready or able to perform builds themselves. +[python-wheels Documentation](https://riseproject-dev.github.io/python-wheels/) + This work is a continuation of the earlier [wheel_builder](https://gitlab.com/riseproject/python/wheel_builder) project, which hosts binary wheels for a variety of Python modules. diff --git a/docs/_config.yml b/docs/_config.yml new file mode 100644 index 0000000..3538228 --- /dev/null +++ b/docs/_config.yml @@ -0,0 +1,21 @@ +title: RISE Python Wheels +description: riscv64 binary wheels for popular Python projects +remote_theme: just-the-docs/just-the-docs + +url: https://riseproject-dev.github.io +baseurl: /python-wheels + +plugins: + - jekyll-remote-theme + +color_scheme: light +search_enabled: true +heading_anchors: true + +aux_links: + "GitHub": + - "https://github.com/riseproject-dev/python-wheels" + +exclude: + - packages/generate_packages_doc.py + - packages/*.yaml diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..2eb7cd0 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,29 @@ +--- +title: Home +layout: default +nav_order: 1 +--- + +# RISE Python Wheels + +RISE Python Wheels is a public project enabling RISC-V support for the Python +ecosystem. It uses the RISE [RISC-V +Runners](https://riscv-runners.riseproject.dev/) project to build wheels on +native riscv64 hardware, with the goal of maintaining a riscv64-specific +package repository for projects where upstream are not yet ready or able to +perform builds themselves. + +This work continues the earlier +[wheel_builder](https://gitlab.com/riseproject/python/wheel_builder) project, +which hosts binary wheels for a variety of Python modules. + +For more information about RISE, visit the [project +website](https://riseproject.dev/). + +## Sections + +- [Motivation](motivation.html) +- [Installing the Packages](install.html) +- [Manylinux_2_35 and Manylinux_2_39](manylinux.html) +- [Supported Packages](packages/) +- [Infrastructure](infrastructure.html) diff --git a/docs/infrastructure.md b/docs/infrastructure.md new file mode 100644 index 0000000..f04872d --- /dev/null +++ b/docs/infrastructure.md @@ -0,0 +1,67 @@ +--- +title: Infrastructure +layout: default +nav_order: 6 +--- + +# Infrastructure + +The [python-wheels](https://github.com/riseproject-dev/python-wheels) project +makes use of some supplemental infrastructure available both on GitHub, and +externally. The following sections outline these services and how to +configure/maintain them. + +## RISE RISC-V Runners + +For RISE-hosted builds of Python wheels and upstream submissions, the +`python-wheels` repository uses the [RISC-V +Runners](https://riscv-runners.riseproject.dev/) project. It is already enabled +for the repository; to reconfigure, see the [installation +guide](https://riscv-runners.riseproject.dev/docs/getting-started/install). + +## GitLab + +The `python-wheels` project is a continuation of +[wheel_builder](https://gitlab.com/riseproject/python/wheel_builder), which is +hosted on GitLab. This project leverages the GitLab CI/CD framework to create +pipelines for building, testing, and deploying wheels, along with automatic +documentation updates and periodic checks for new package versions upstream. + +While development and maintenance now primarily occur on GitHub, the existing +GitLab infrastructure (particularly the package registry) must be maintained. +The original wheel_builder +[documentation](https://riseproject.gitlab.io/python/wheel_builder/index.html) +is maintained for reference purposes, and provides a detailed explanation of how +the project was originally structured. + +### GitLab for Open Source + +We apply for the [GitLab for Open +Source](https://about.gitlab.com/solutions/open-source/join/) program. This +provides us with the GitLab Ultimate tier at no cost. Membership requires annual +renewal. + +### CI/CD Pipeline Tokens and Access + +The GitLab CI/CD pipelines make use of project tokens, generated at different +project scopes. Two tokens are defined: + +1. `PYTHON_CI_GROUP_TOKEN` - Defined at the "Group" + ([Python](https://gitlab.com/riseproject/python)) level. Used for triggering + pipelines for merge requests and most automatic updates and checks. The value + of this token is inherited by `wheel_builder` as `PYTHON_CI_GROUP_TOKEN` + under `Settings -> CI/CD Settings -> Variables` (see the [CI/CD variables + panel](https://gitlab.com/riseproject/python/wheel_builder/-/settings/ci_cd#js-cicd-variables-settings)). +2. `rise-github-package-registry` - Defined at the "Repository" + ([wheel_builder](https://gitlab.com/riseproject/python/wheel_builder/-/settings/repository#js-deploy-tokens)) + level. Used for pushing wheels to the GitLab package registry from GitHub. + +These tokens are generated with a 1-year expiry timeline, so they need to be +regenerated by a project administrator/owner. + +#### Token Scope Reference + +| Token | Level | Role | Scopes | Used For | Expiry | +|-------|-------|------|--------|----------|--------| +| `PYTHON_CI_GROUP_TOKEN` | Group ([Python](https://gitlab.com/riseproject/python)) | Maintainer | `api`, `read_api`, `read_repository`, `write_repository` | MR pipeline triggers, auto updates/checks | 1 year (Unknown expiry) | +| `rise-github-package-registry` | Repository deploy token ([wheel_builder](https://gitlab.com/riseproject/python/wheel_builder/-/settings/repository#js-deploy-tokens)) | n/a (deploy token) | `read_package_registry`, `write_package_registry` | Push wheels GitHub → GitLab package registry | 1 year (June 29th, 2027) | diff --git a/docs/install.md b/docs/install.md new file mode 100644 index 0000000..c9b2d35 --- /dev/null +++ b/docs/install.md @@ -0,0 +1,51 @@ +--- +title: Installing the Packages +layout: default +nav_order: 3 +--- + +# Installing the Packages + +The built wheels are hosted in the [package +registry](https://gitlab.com/riseproject/python/wheel_builder/-/packages) +associated with the riseproject/python/wheel_builder project. To install them, +first upgrade pip to the latest version, e.g., + +```bash +python -m pip install --upgrade pip +``` + +and then pass the `--index-url` option to the install command to tell pip to +pull packages from the registry associated with this project, e.g., + +```bash +python -m pip install scipy --index-url https://gitlab.com/api/v4/projects/riseproject%2Fpython%2Fwheel_builder/packages/pypi/simple +``` + +{: .note } +> Some riscv64 packages are now built and published upstream on PyPI. We will +> no longer build, upgrade and publish them as part of the wheel_builder +> project. +> +> To make sure to always install the latest version available, use +> +> ```bash +> python -m pip install scipy --prefer-binary --extra-index-url https://gitlab.com/api/v4/projects/riseproject%2Fpython%2Fwheel_builder/packages/pypi/simple +> ``` +> +> This will: +> +> - search both PyPI and the internal registry. +> - pick the highest available version. +> - prefer binary wheels over source distributions. +> +> This ensures we get wheels from PyPI when available, while falling back to +> our registry for packages without riscv64 wheels, avoiding unnecessary source +> builds. + +{: .warning } +> In general, `--extra-index-url` should be used very carefully (see +> ). +> +> The wheel_builder registry only contains wheels for packages that have +> pre-existing counterparts in PyPI, so it is safe to use it in that context. diff --git a/docs/manylinux.md b/docs/manylinux.md new file mode 100644 index 0000000..3177e43 --- /dev/null +++ b/docs/manylinux.md @@ -0,0 +1,43 @@ +--- +title: Manylinux_2_35 and Manylinux_2_39 +layout: default +nav_order: 4 +--- + +# Manylinux_2_35 and Manylinux_2_39 + +The packages distributed in this registry are a mix of manylinux_2_35 and +manylinux_2_39 wheels. Support for manylinux wheels for riscv64 was added to +pip in version 24.1 so you must have pip 24.1 or greater installed locally in +order to install the packages. This is why we recommend upgrading pip above +before installing anything. Prior to the release of pip 24.1, some wheels with +the linux tag were created for a select set of packages and uploaded to this +package registry. If your version of pip is older than 24.1 pip will install +these older wheels instead of the manylinux wheels, if they are available. +This is probably not what you want so do upgrade pip. + +These older packages in this registry with the 'linux' platform tag, e.g., +`numpy-1.26.4-cp39-cp39-linux_riscv64.whl`, actually behave like manylinux_2_35 +wheels. These wheels were generated because we didn't want to wait for the +release of pip 24.1 to begin distributing riscv64 wheels, so while we were +waiting, we used a modified auditwheel that generates wheels with the linux +platform tag that mostly behave like manylinux_2_35 wheels. This means that +the wheels will work on any Linux distribution with glibc 2.35 or greater. The +wheels also vendor all of their dependencies that are not on the +manylinux_2_35 whitelist, e.g., OpenBLAS and libgfortran. One downside of +misusing the platform tag in this way is that pip will not warn you when you +install the wheels on distributions that use a glibc older than 2.35. In this +case the wheels will install but will be unlikely to work. As most riscv64 +users are expected to use recent distributions to benefit from the latest +riscv64 support from the kernel and toolchains, this hopefully won't be too +much of an issue. + +The manylinux_2_39 wheels are built with the upstream manylinux_2_39_riscv64 +image. There are a few exceptions that were built with a custom +manylinux_2_39_riscv64 based on RockyLinux 10 which we used for a short period +of time before the official manylinux_2_39_riscv64 images were published. + +All earlier wheels are built using a custom manylinux_2_35 based on Ubuntu +22.04. See the local +[riseproject/python/manylinux](https://gitlab.com/riseproject/python/manylinux) +fork for more details. diff --git a/docs/motivation.md b/docs/motivation.md new file mode 100644 index 0000000..bb01b1d --- /dev/null +++ b/docs/motivation.md @@ -0,0 +1,30 @@ +--- +title: Motivation +layout: default +nav_order: 2 +--- + +# Motivation + +Python is commonly used in the fields of scientific computing, data analysis and +machine learning. However, the Python packages used in these disciplines aren't +wholly written in Python - they also contain a lot of code written in C/C++ or +other languages which needs to be built as part of the module. Such projects +typically create binary wheels for each of their releases and upload these +wheels to pypi, the Python Package Index. This allows users to easily and +quickly install tested, prebuilt versions of their favourite projects using the +pip (or [uv](https://docs.astral.sh/uv/)) tool. + +Until recently, Python packaging infrastructure like +[auditwheel](https://github.com/pypa/auditwheel), +[cibuildwheel](https://github.com/pypa/cibuildwheel), and +[manylinux](https://github.com/pypa/manylinux) did not support riscv64, and no +native runners for GitHub Actions were available. This made supporting the +architecture difficult for open-source projects without complicated build +processes and emulated systems. However, the aforementioned infrastructure now +supports riscv64, and with the RISE [RISC-V +Runners](https://riscv-runners.riseproject.dev/) project, maintainers have the +option of building binary wheels on native riscv64 platforms. The RISE Python +Wheels project's goal is to accelerate this adoption and ensure that the riscv64 +architecture is fully-supported for data science and machine learning +applications. diff --git a/docs/packages/aiohttp.md b/docs/packages/aiohttp.md new file mode 100644 index 0000000..ea88dce --- /dev/null +++ b/docs/packages/aiohttp.md @@ -0,0 +1,59 @@ +--- +title: aiohttp +layout: default +parent: Supported Packages +--- + + + +# aiohttp + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/aiohttp/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/aio-libs/aiohttp](https://github.com/aio-libs/aiohttp) +- **Supported versions:** + +
+3.12.14 (latest) + +```bash +pip install aiohttp --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/42690263](https://gitlab.com/riseproject/python/wheel_builder/-/packages/42690263) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/aiohttp/patches/v3.12.14](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/aiohttp/patches/v3.12.14) +
+ +
+3.11.18 + +```bash +pip install aiohttp==3.11.18 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40999682](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40999682) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/aiohttp/patches/v3.11.18](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/aiohttp/patches/v3.11.18) +
+ + +{: .warning } +> We disable the tests in tests/autobahn/test_autobahn as they depend on +> docker_on_whales and we don't want to be testing docker builds as part of +> the pipeline. +> +> We also disable a flaky uvloop test, and tests that contain the following +> patterns, involving consistent failures related to networking or permissions: +> +> - test_no_warnings +> - test_static_directory_without_read_permission +> - test_static_file_without_read_permission +> - test_uvloop_secure_https_proxy diff --git a/docs/packages/argon2-cffi-bindings.md b/docs/packages/argon2-cffi-bindings.md new file mode 100644 index 0000000..d639fbd --- /dev/null +++ b/docs/packages/argon2-cffi-bindings.md @@ -0,0 +1,34 @@ +--- +title: argon2-cffi-bindings +layout: default +parent: Supported Packages +--- + + + +# argon2-cffi-bindings + +- **Source Code:** [https://github.com/hynek/argon2-cffi-bindings](https://github.com/hynek/argon2-cffi-bindings) +- **Supported versions:** + +
+25.1.0 (latest) + +```bash +pip install argon2-cffi-bindings --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT/CC0(libargon2) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50575538](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50575538) +
+ +
+21.2.0 + +```bash +pip install argon2-cffi-bindings==21.2.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT/CC0(libargon2) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/32318987](https://gitlab.com/riseproject/python/wheel_builder/-/packages/32318987) +
diff --git a/docs/packages/blake3.md b/docs/packages/blake3.md new file mode 100644 index 0000000..d231a44 --- /dev/null +++ b/docs/packages/blake3.md @@ -0,0 +1,65 @@ +--- +title: blake3 +layout: default +parent: Supported Packages +--- + + + +# blake3 + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/blake3/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/oconnor663/blake3-py](https://github.com/oconnor663/blake3-py) +- **Supported versions:** + +
+1.0.8 (latest) + +```bash +pip install blake3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** CC0-1.0 OR Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52054032](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52054032) +
+ +
+1.0.7 + +```bash +pip install blake3==1.0.7 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** CC0-1.0 OR Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52053858](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52053858) +
+ +
+1.0.6 + +```bash +pip install blake3==1.0.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** CC0-1.0 OR Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52053578](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52053578) +
+ +
+1.0.5 + +```bash +pip install blake3==1.0.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** CC0-1.0 OR Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39354626](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39354626) +
diff --git a/docs/packages/cffi.md b/docs/packages/cffi.md new file mode 100644 index 0000000..46cc943 --- /dev/null +++ b/docs/packages/cffi.md @@ -0,0 +1,50 @@ +--- +title: cffi +layout: default +parent: Supported Packages +--- + + + +# cffi + +- **Source Code:** [https://github.com/python-cffi/cffi](https://github.com/python-cffi/cffi) +- **Supported versions:** + +
+2.0.0 (latest) + +```bash +pip install cffi --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51624473](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51624473) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cffi/patches/v2.0.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cffi/patches/v2.0.0) +
+ +
+1.17.1 + +```bash +pip install cffi==1.17.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28951761](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28951761) +
+ +
+1.17.0 + +```bash +pip install cffi==1.17.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28734126](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28734126) +
+ + +{: .note } +> We append the files in the libffi LICENSE to the LICENSE file in the wheel diff --git a/docs/packages/charset-normalizer.md b/docs/packages/charset-normalizer.md new file mode 100644 index 0000000..1214d03 --- /dev/null +++ b/docs/packages/charset-normalizer.md @@ -0,0 +1,43 @@ +--- +title: charset-normalizer +layout: default +parent: Supported Packages +--- + + + +# charset-normalizer + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/charset-normalizer/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/jawah/charset_normalizer](https://github.com/jawah/charset_normalizer) +- **Supported versions:** + +
+3.4.2 (latest) + +```bash +pip install charset-normalizer --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38877549](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38877549) +
+ +
+3.4.1 + +```bash +pip install charset-normalizer==3.4.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/35564561](https://gitlab.com/riseproject/python/wheel_builder/-/packages/35564561) +
diff --git a/docs/packages/cmake.md b/docs/packages/cmake.md new file mode 100644 index 0000000..a98972b --- /dev/null +++ b/docs/packages/cmake.md @@ -0,0 +1,205 @@ +--- +title: cmake +layout: default +parent: Supported Packages +--- + + + +# cmake + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/cmake/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/scikit-build/cmake-python-distributions](https://github.com/scikit-build/cmake-python-distributions) +- **Supported versions:** + +
+4.0.3 (latest) + +```bash +pip install cmake --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/41042669](https://gitlab.com/riseproject/python/wheel_builder/-/packages/41042669) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/4.0.3](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/4.0.3) +
+ +
+4.0.0 + +```bash +pip install cmake==4.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/44635499](https://gitlab.com/riseproject/python/wheel_builder/-/packages/44635499) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/4.0.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/4.0.0) +
+ +
+3.31.6 + +```bash +pip install cmake==3.31.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/44521350](https://gitlab.com/riseproject/python/wheel_builder/-/packages/44521350) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.31.6](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.31.6) +
+ +
+3.31.4 + +```bash +pip install cmake==3.31.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34280719](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34280719) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.31.4](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.31.4) +
+ +
+3.31.2 + +```bash +pip install cmake==3.31.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34232702](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34232702) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.31.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.31.2) +
+ +
+3.30.5 + +```bash +pip install cmake==3.30.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/31903029](https://gitlab.com/riseproject/python/wheel_builder/-/packages/31903029) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.30.5](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.30.5) +
+ +
+3.30.2 + +```bash +pip install cmake==3.30.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28476412](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28476412) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.30.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.30.2) +
+ +
+3.30.1 + +```bash +pip install cmake==3.30.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28011738](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28011738) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.30.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.30.1) +
+ +
+3.30.0 + +```bash +pip install cmake==3.30.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28008022](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28008022) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.30.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.30.0) +
+ +
+3.29.6 + +```bash +pip install cmake==3.29.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/26654121](https://gitlab.com/riseproject/python/wheel_builder/-/packages/26654121) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.29.6](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/cmake-python-distributions/patches/3.29.6) +
+ +
+3.29.5.1 + +```bash +pip install cmake==3.29.5.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/26370125](https://gitlab.com/riseproject/python/wheel_builder/-/packages/26370125) +
+ +
+3.29.5 + +```bash +pip install cmake==3.29.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/26213902](https://gitlab.com/riseproject/python/wheel_builder/-/packages/26213902) +
+ +
+3.29.3 + +```bash +pip install cmake==3.29.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/25368107](https://gitlab.com/riseproject/python/wheel_builder/-/packages/25368107) +
+ +
+3.29.2 + +```bash +pip install cmake==3.29.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/24999085](https://gitlab.com/riseproject/python/wheel_builder/-/packages/24999085) +
+ +
+3.27.7 + +```bash +pip install cmake==3.27.7 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/26045398](https://gitlab.com/riseproject/python/wheel_builder/-/packages/26045398) +
+ + +{: .note } +> Provides [cmake](https://github.com/Kitware/CMake) + + +{: .warning } +> We disable Module.ExternalData which is flaky and appears to have a race +> condition under qemu-user. diff --git a/docs/packages/contourpy.md b/docs/packages/contourpy.md new file mode 100644 index 0000000..818a208 --- /dev/null +++ b/docs/packages/contourpy.md @@ -0,0 +1,45 @@ +--- +title: contourpy +layout: default +parent: Supported Packages +--- + + + +# contourpy + +- **Source Code:** [https://github.com/contourpy/contourpy](https://github.com/contourpy/contourpy) +- **Supported versions:** + +
+1.3.3 (latest) + +```bash +pip install contourpy --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50621990](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50621990) +
+ +
+1.3.2 + +```bash +pip install contourpy==1.3.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38877323](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38877323) +
+ +
+1.3.1 + +```bash +pip install contourpy==1.3.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/32228033](https://gitlab.com/riseproject/python/wheel_builder/-/packages/32228033) +
diff --git a/docs/packages/cryptography.md b/docs/packages/cryptography.md new file mode 100644 index 0000000..92e83bc --- /dev/null +++ b/docs/packages/cryptography.md @@ -0,0 +1,126 @@ +--- +title: cryptography +layout: default +parent: Supported Packages +--- + + + +# cryptography + +- **Source Code:** [https://github.com/pyca/cryptography](https://github.com/pyca/cryptography) +- **Supported versions:** + +
+49.0.0 (latest) + +```bash +pip install cryptography --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/62340444](https://gitlab.com/riseproject/python/wheel_builder/-/packages/62340444) +
+ +
+48.0.1 + +```bash +pip install cryptography==48.0.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/62336050](https://gitlab.com/riseproject/python/wheel_builder/-/packages/62336050) +
+ +
+48.0.0 + +```bash +pip install cryptography==48.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59516762](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59516762) +
+ +
+47.0.0 + +```bash +pip install cryptography==47.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59041359](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59041359) +
+ +
+46.0.7 + +```bash +pip install cryptography==46.0.7 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/58691827](https://gitlab.com/riseproject/python/wheel_builder/-/packages/58691827) +
+ +
+46.0.6 + +```bash +pip install cryptography==46.0.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/56889419](https://gitlab.com/riseproject/python/wheel_builder/-/packages/56889419) +
+ +
+46.0.5 + +```bash +pip install cryptography==46.0.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54219631](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54219631) +
+ +
+45.0.4 + +```bash +pip install cryptography==45.0.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40505802](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40505802) +
+ +
+43.0.1 + +```bash +pip install cryptography==43.0.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/29006427](https://gitlab.com/riseproject/python/wheel_builder/-/packages/29006427) + +{: .note } +> Built using latest OpenSSL available in Ubuntu 22.04 (3.0.2-0ubuntu1.18) and so not affected by CVE-2024-12797 + +
+ +
+39.0.2 + +```bash +pip install cryptography==39.0.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40507517](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40507517) +
diff --git a/docs/packages/fastar.md b/docs/packages/fastar.md new file mode 100644 index 0000000..d0fe641 --- /dev/null +++ b/docs/packages/fastar.md @@ -0,0 +1,51 @@ +--- +title: fastar +layout: default +parent: Supported Packages +--- + + + +# fastar + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/fastar/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/DoctorJohn/fastar](https://github.com/DoctorJohn/fastar) +- **Supported versions:** + +
+0.8.0 (latest) + +```bash +pip install fastar --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51622319](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51622319) +
+ +
+0.7.0 + +```bash +pip install fastar==0.7.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49649209](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49649209) +
+ + +{: .note } +> The following tests are disabled as they do not pass in our CI: +> +> - test_open_raises_if_insufficient_permissions +> - test_open_raises_if_no_permission +> - test_unpack_preserves_file_modification_time_only_if_option_is_true diff --git a/docs/packages/fastrlock.md b/docs/packages/fastrlock.md new file mode 100644 index 0000000..7fd67cb --- /dev/null +++ b/docs/packages/fastrlock.md @@ -0,0 +1,23 @@ +--- +title: fastrlock +layout: default +parent: Supported Packages +--- + + + +# fastrlock + +- **Source Code:** [https://github.com/scoder/fastrlock](https://github.com/scoder/fastrlock) +- **Supported versions:** + +
+0.8.3 (latest) + +```bash +pip install fastrlock --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT style +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40201137](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40201137) +
diff --git a/docs/packages/frozenlist.md b/docs/packages/frozenlist.md new file mode 100644 index 0000000..4a4240e --- /dev/null +++ b/docs/packages/frozenlist.md @@ -0,0 +1,82 @@ +--- +title: frozenlist +layout: default +parent: Supported Packages +--- + + + +# frozenlist + +- **Source Code:** [https://github.com/aio-libs/frozenlist.git](https://github.com/aio-libs/frozenlist.git) +- **Supported versions:** + +
+1.8.0 (latest) + +```bash +pip install frozenlist --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54030141](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54030141) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/frozenlist/patches/v1.8.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/frozenlist/patches/v1.8.0) +
+ +
+1.7.0 + +```bash +pip install frozenlist==1.7.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54030025](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54030025) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/frozenlist/patches/v1.7.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/frozenlist/patches/v1.7.0) +
+ +
+1.6.2 + +```bash +pip install frozenlist==1.6.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54030059](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54030059) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/frozenlist/patches/v1.6.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/frozenlist/patches/v1.6.2) +
+ +
+1.6.1 + +```bash +pip install frozenlist==1.6.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54030035](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54030035) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/frozenlist/patches/v1.6.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/frozenlist/patches/v1.6.1) +
+ +
+1.6.0 + +```bash +pip install frozenlist==1.6.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39213008](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39213008) +
+ +
+1.5.0 + +```bash +pip install frozenlist==1.5.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36248365](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36248365) +
diff --git a/docs/packages/generate_packages_doc.py b/docs/packages/generate_packages_doc.py new file mode 100644 index 0000000..39ee0ec --- /dev/null +++ b/docs/packages/generate_packages_doc.py @@ -0,0 +1,285 @@ +# SPDX-FileCopyrightText: 2025 BayLibre, SAS +# SPDX-License-Identifier: Apache-2.0 + +import glob +import os +import re + +import packaging.version as packaging_version +import requests +import yaml + + +GITLAB_PROJECT_ID = "56254198" +GITLAB_REGISTRY_URL = ( + f"https://gitlab.com/api/v4/projects/{GITLAB_PROJECT_ID}/packages" +) +GITLAB_WHEEL_BUILDER_URL = ( + "https://gitlab.com/riseproject/python/wheel_builder/-/tree/main" +) + +# YAML source still lives in the old wheel_builder repo for now. +YAML_SRC_DIR = os.path.normpath( + os.path.join( + os.path.dirname(os.path.abspath(__file__)), + "..", "..", "..", "wheel_builder", "docs", "source", "packages", + ) +) + +# Match RST inline external refs: `Label `_ or `Label `__ +RST_LINK_RE = re.compile(r"`([^`<]+?)\s*<([^>]+)>`_+") + + +def rst_to_md(text): + """Convert the subset of RST inline syntax used in YAML comments to Markdown.""" + if not text: + return text + return RST_LINK_RE.sub(r"[\1](\2)", text) + + +def get_all_packages(): + """Fetch all package data from GitLab, handling pagination.""" + session = requests.Session() + packages = [] + page = 1 + + try: + while True: + response = session.get( + GITLAB_REGISTRY_URL, params={"per_page": 100, "page": page} + ) + if response.status_code != 200: + print( + f"Error fetching packages: {response.status_code} - {response.text}" + ) + return [] + + data = response.json() + if not data: + break + + packages.extend(data) + next_page = response.headers.get("X-Next-Page") + if not next_page: + break + page = int(next_page) + + except requests.RequestException as e: + print(f"Request error: {e}") + return [] + + return packages + + +def get_package_id(package_name, version, package_list): + return next( + ( + pkg["id"] + for pkg in package_list + if pkg["name"] == package_name and pkg["version"].startswith(version) + ), + None, + ) + + +def get_upstream_tag(package_name, version, package_list): + return next( + ( + pkg["pipeline"]["ref"] + for pkg in package_list + if pkg["name"] == package_name and pkg["version"].startswith(version) + ), + None, + ) + + +def _callout(lines, label, text): + """Append a just-the-docs callout block to ``lines``.""" + lines.append("") + lines.append(f"{{: .{label} }}") + for ln in rst_to_md(text).splitlines(): + lines.append(f"> {ln}" if ln else ">") + lines.append("") + + +def generate_md_page(yaml_file, output_md, package_list): + """Generate a Markdown page from a single package YAML file.""" + try: + with open(yaml_file, "r", encoding="utf-8") as f: + package_data = yaml.safe_load(f) + except (yaml.YAMLError, FileNotFoundError) as e: + print(f"Error reading {yaml_file}: {e}") + return None, None + + package_name = package_data.get("package-name", "Unknown Package") + license_type = package_data.get("license") + source_code = package_data.get("source-code") + comment = package_data.get("comment") + warning = package_data.get("warning") + versions = package_data.get("versions", []) + + versions.sort( + key=lambda v: packaging_version.parse(str(v["version"])), reverse=True + ) + latest_version = str(versions[0]["version"]) if versions else None + + lines = [ + "---", + f"title: {package_name}", + "layout: default", + "parent: Supported Packages", + "---", + "", + "", + "", + f"# {package_name}", + "", + ] + + if "deprecated" in package_data: + pypi_url = f"https://pypi.org/project/{package_name}/" + lines += [ + "{: .warning }", + "> This package is deprecated. PyPI now publishes newer versions of", + "> this package for riscv64, and we will no longer maintain this", + f"> package. Please use the version from [PyPI]({pypi_url}) instead.", + ">", + "> If you need a specific version between the latest available here", + "> and the first available on PyPI, please open an", + "> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues).", + "", + ] + + if source_code: + lines.append(f"- **Source Code:** [{source_code}]({source_code})") + + lines.append("- **Supported versions:**") + lines.append("") + + for version in versions: + version_number = str(version["version"]) + is_latest = version_number == latest_version + summary_label = f"{version_number} (latest)" if is_latest else version_number + + lines.append( + f'
' + ) + lines.append(f"{summary_label}") + lines.append("") + + install_command = ( + f"pip install {package_name} " + f"--index-url {GITLAB_REGISTRY_URL}/pypi/simple" + if is_latest + else f"pip install {package_name}=={version_number} " + f"--index-url {GITLAB_REGISTRY_URL}/pypi/simple" + ) + lines += ["```bash", install_command, "```", ""] + + lic = version.get("license", license_type) + if lic: + lines.append(f"- **License:** {lic}") + + package_id = get_package_id(package_name, version_number, package_list) + if package_id: + registry_link = ( + f"https://gitlab.com/riseproject/python/wheel_builder/-/packages/{package_id}" + ) + lines.append( + f"- **Download files:** [{registry_link}]({registry_link})" + ) + + if "patched" in version and source_code: + project_name = ( + source_code.removesuffix("/").removesuffix(".git").split("/")[-1] + ) + upstream_tag = get_upstream_tag( + package_name, version_number, package_list + ) + if upstream_tag: + patch_link = ( + f"{GITLAB_WHEEL_BUILDER_URL}/wheel_builder/" + f"{project_name}/patches/{upstream_tag}" + ) + lines.append( + f"- **Patch applied for this version:** " + f"[{patch_link}]({patch_link})" + ) + + if version.get("comment"): + _callout(lines, "note", version["comment"]) + + if version.get("warning"): + _callout(lines, "warning", version["warning"]) + + lines += ["
", ""] + + if comment: + _callout(lines, "note", comment) + + if warning: + _callout(lines, "warning", warning) + + try: + with open(output_md, "w", encoding="utf-8") as f: + f.write("\n".join(lines).rstrip() + "\n") + except IOError as e: + print(f"Error writing {output_md}: {e}") + return None, None + + return package_name, output_md + + +def process_all_yaml_files(package_list): + yaml_files = sorted(glob.glob(os.path.join(YAML_SRC_DIR, "*.yaml"))) + if not yaml_files: + print(f"No YAML files found in {YAML_SRC_DIR}") + return + + out_dir = os.path.dirname(os.path.abspath(__file__)) + package_entries = [] + for yaml_file in yaml_files: + base = os.path.basename(yaml_file).replace(".yaml", ".md") + md_file = os.path.join(out_dir, base) + name, fname = generate_md_page(yaml_file, md_file, package_list) + if name and fname: + package_entries.append((name, os.path.basename(fname))) + + package_entries.sort(key=lambda x: x[0].lower()) + generate_index(package_entries, out_dir) + + +def generate_index(package_entries, out_dir): + if not package_entries: + print("No packages to list in index.md") + return + + lines = [ + "---", + "title: Supported Packages", + "layout: default", + "nav_order: 5", + "has_children: true", + "---", + "", + "", + "", + "# List of Supported Packages", + "", + ] + for name, fname in package_entries: + page = fname.replace(".md", ".html") + lines.append(f"- [{name}]({page})") + + index_path = os.path.join(out_dir, "index.md") + try: + with open(index_path, "w", encoding="utf-8") as f: + f.write("\n".join(lines) + "\n") + print(f"Generated: {index_path}") + except IOError as e: + print(f"Error writing {index_path}: {e}") + + +if __name__ == "__main__": + package_list = get_all_packages() + process_all_yaml_files(package_list) diff --git a/docs/packages/grpcio.md b/docs/packages/grpcio.md new file mode 100644 index 0000000..1f3ef68 --- /dev/null +++ b/docs/packages/grpcio.md @@ -0,0 +1,64 @@ +--- +title: grpcio +layout: default +parent: Supported Packages +--- + + + +# grpcio + +- **Source Code:** [https://github.com/grpc/grpc](https://github.com/grpc/grpc) +- **Supported versions:** + +
+1.76.0 (latest) + +```bash +pip install grpcio --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache License 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/48644466](https://gitlab.com/riseproject/python/wheel_builder/-/packages/48644466) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/grpc/patches/v1.76.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/grpc/patches/v1.76.0) + +{: .note } +> tests.unit._dynamic_stubs_test.DynamicStubTest.test_sunny_day is skipped as it hangs wheel_builder's testing environment. + +
+ +
+1.75.1 + +```bash +pip install grpcio==1.75.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache License 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/48661615](https://gitlab.com/riseproject/python/wheel_builder/-/packages/48661615) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/grpc/patches/v1.75.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/grpc/patches/v1.75.1) + +{: .note } +> tests.unit._dynamic_stubs_test.DynamicStubTest.test_sunny_day is skipped as it hangs wheel_builder's testing environment. + +
+ +
+1.72.0 + +```bash +pip install grpcio==1.72.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache License 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40070809](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40070809) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/grpc/patches/v1.72.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/grpc/patches/v1.72.0) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/grpc/-/jobs/10247423921/artifacts/raw/gpl-sources.tar) to sources of bundled GPL libraries (libatomic) + +
+ + +{: .note } +> The sources of libatomic are provided for wheels built with gcc-12 only. Wheels built with gcc-14 do not link against libatomic. diff --git a/docs/packages/hf-transfer.md b/docs/packages/hf-transfer.md new file mode 100644 index 0000000..b926879 --- /dev/null +++ b/docs/packages/hf-transfer.md @@ -0,0 +1,23 @@ +--- +title: hf-transfer +layout: default +parent: Supported Packages +--- + + + +# hf-transfer + +- **Source Code:** [https://github.com/huggingface/hf_transfer.git](https://github.com/huggingface/hf_transfer.git) +- **Supported versions:** + +
+0.1.9 (latest) + +```bash +pip install hf-transfer --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/45390231](https://gitlab.com/riseproject/python/wheel_builder/-/packages/45390231) +
diff --git a/docs/packages/hf-xet.md b/docs/packages/hf-xet.md new file mode 100644 index 0000000..0e16522 --- /dev/null +++ b/docs/packages/hf-xet.md @@ -0,0 +1,100 @@ +--- +title: hf-xet +layout: default +parent: Supported Packages +--- + + + +# hf-xet + +- **Source Code:** [https://github.com/huggingface/xet-core](https://github.com/huggingface/xet-core) +- **Supported versions:** + +
+1.2.0 (latest) + +```bash +pip install hf-xet --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050538](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050538) +
+ +
+1.1.10 + +```bash +pip install hf-xet==1.1.10 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050571](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050571) +
+ +
+1.1.9 + +```bash +pip install hf-xet==1.1.9 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050522](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050522) +
+ +
+1.1.8 + +```bash +pip install hf-xet==1.1.8 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050460](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050460) +
+ +
+1.1.7 + +```bash +pip install hf-xet==1.1.7 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050487](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050487) +
+ +
+1.1.6 + +```bash +pip install hf-xet==1.1.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050478](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52050478) +
+ +
+1.1.5 + +```bash +pip install hf-xet==1.1.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/41101652](https://gitlab.com/riseproject/python/wheel_builder/-/packages/41101652) +
+ +
+1.1.4 + +```bash +pip install hf-xet==1.1.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/41058114](https://gitlab.com/riseproject/python/wheel_builder/-/packages/41058114) +
diff --git a/docs/packages/httptools.md b/docs/packages/httptools.md new file mode 100644 index 0000000..33ec1bf --- /dev/null +++ b/docs/packages/httptools.md @@ -0,0 +1,49 @@ +--- +title: httptools +layout: default +parent: Supported Packages +--- + + + +# httptools + +- **Source Code:** [https://github.com/MagicStack/httptools](https://github.com/MagicStack/httptools) +- **Supported versions:** + +
+0.8.0 (latest) + +```bash +pip install httptools --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/60959410](https://gitlab.com/riseproject/python/wheel_builder/-/packages/60959410) +
+ +
+0.7.1 + +```bash +pip install httptools==0.7.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52154172](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52154172) +
+ +
+0.6.4 + +```bash +pip install httptools==0.6.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34520529](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34520529) +
+ + +{: .note } +> We append the license text of http-parser and llhttp to the LICENSE file in the wheel diff --git a/docs/packages/index.md b/docs/packages/index.md new file mode 100644 index 0000000..0e38371 --- /dev/null +++ b/docs/packages/index.md @@ -0,0 +1,86 @@ +--- +title: Supported Packages +layout: default +nav_order: 5 +has_children: true +--- + + + +# List of Supported Packages + +- [aiohttp](aiohttp.html) +- [argon2-cffi-bindings](argon2-cffi-bindings.html) +- [blake3](blake3.html) +- [cffi](cffi.html) +- [charset-normalizer](charset-normalizer.html) +- [cmake](cmake.html) +- [contourpy](contourpy.html) +- [cryptography](cryptography.html) +- [fastar](fastar.html) +- [fastrlock](fastrlock.html) +- [frozenlist](frozenlist.html) +- [grpcio](grpcio.html) +- [hf-transfer](hf-transfer.html) +- [hf-xet](hf-xet.html) +- [httptools](httptools.html) +- [jiter](jiter.html) +- [kiwisolver](kiwisolver.html) +- [libcst](libcst.html) +- [lintrunner](lintrunner.html) +- [llguidance](llguidance.html) +- [lxml](lxml.html) +- [MarkupSafe](markupsafe.html) +- [matplotlib](matplotlib.html) +- [maturin](maturin.html) +- [ml-dtypes](ml-dtypes.html) +- [msgpack](msgpack.html) +- [msgspec](msgspec.html) +- [multidict](multidict.html) +- [nh3](nh3.html) +- [ninja](ninja.html) +- [numpy](numpy.html) +- [onnx](onnx.html) +- [openai-harmony](openai-harmony.html) +- [optree](optree.html) +- [orjson](orjson.html) +- [outlines-core](outlines_core.html) +- [pandas](pandas.html) +- [patchelf](patchelf.html) +- [pillow](pillow.html) +- [polars-runtime-32](polars-runtime-32.html) +- [polars-runtime-64](polars-runtime-64.html) +- [propcache](propcache.html) +- [psutil](psutil.html) +- [pydantic-core](pydantic-core.html) +- [PyNaCl](pynacl.html) +- [pyuwsgi](pyuwsgi.html) +- [PyYAML](pyyaml.html) +- [pyzmq](pyzmq.html) +- [pyzstd](pyzstd.html) +- [regex](regex.html) +- [rignore](rignore.html) +- [rpds-py](rpds-py.html) +- [safetensors](safetensors.html) +- [scikit-image](scikit-image.html) +- [scipy](scipy.html) +- [scipy-openblas32](scipy-openblas32.html) +- [scipy-openblas64](scipy-openblas64.html) +- [sentencepiece](sentencepiece.html) +- [setproctitle](setproctitle.html) +- [soundfile](soundfile.html) +- [swig](swig.html) +- [tiktoken](tiktoken.html) +- [tlparse](tlparse.html) +- [tokenizers](tokenizers.html) +- [tornado](tornado.html) +- [ujson](ujson.html) +- [uv](uv.html) +- [uvloop](uvloop.html) +- [video-reader-rs](video-reader-rs.html) +- [watchfiles](watchfiles.html) +- [websockets](websockets.html) +- [wrapt](wrapt.html) +- [xxhash](xxhash.html) +- [yarl](yarl.html) +- [z3-solver](z3-solver.html) diff --git a/docs/packages/jiter.md b/docs/packages/jiter.md new file mode 100644 index 0000000..779a929 --- /dev/null +++ b/docs/packages/jiter.md @@ -0,0 +1,114 @@ +--- +title: jiter +layout: default +parent: Supported Packages +--- + + + +# jiter + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/jiter/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/pydantic/jiter](https://github.com/pydantic/jiter) +- **Supported versions:** + +
+0.13.0 (latest) + +```bash +pip install jiter --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/57075425](https://gitlab.com/riseproject/python/wheel_builder/-/packages/57075425) +
+ +
+0.12.0 + +```bash +pip install jiter==0.12.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51271228](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51271228) +
+ +
+0.11.1 + +```bash +pip install jiter==0.11.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51271223](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51271223) +
+ +
+0.11.0 + +```bash +pip install jiter==0.11.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/45993124](https://gitlab.com/riseproject/python/wheel_builder/-/packages/45993124) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/jiter/patches/v0.11.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/jiter/patches/v0.11.0) +
+ +
+0.10.0 + +```bash +pip install jiter==0.10.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/46099948](https://gitlab.com/riseproject/python/wheel_builder/-/packages/46099948) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/jiter/patches/v0.10.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/jiter/patches/v0.10.0) +
+ +
+0.9.1 + +```bash +pip install jiter==0.9.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/46099952](https://gitlab.com/riseproject/python/wheel_builder/-/packages/46099952) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/jiter/patches/v0.9.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/jiter/patches/v0.9.1) +
+ +
+0.9.0 + +```bash +pip install jiter==0.9.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/46099946](https://gitlab.com/riseproject/python/wheel_builder/-/packages/46099946) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/jiter/patches/v0.9.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/jiter/patches/v0.9.0) +
+ +
+0.8.2 + +```bash +pip install jiter==0.8.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36248385](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36248385) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/jiter/patches/v0.8.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/jiter/patches/v0.8.2) +
diff --git a/docs/packages/kiwisolver.md b/docs/packages/kiwisolver.md new file mode 100644 index 0000000..7a96d52 --- /dev/null +++ b/docs/packages/kiwisolver.md @@ -0,0 +1,54 @@ +--- +title: kiwisolver +layout: default +parent: Supported Packages +--- + + + +# kiwisolver + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/kiwisolver/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/nucleic/kiwi](https://github.com/nucleic/kiwi) +- **Supported versions:** + +
+1.4.9 (latest) + +```bash +pip install kiwisolver --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51302208](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51302208) +
+ +
+1.4.8 + +```bash +pip install kiwisolver==1.4.8 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/33904520](https://gitlab.com/riseproject/python/wheel_builder/-/packages/33904520) +
+ +
+1.4.7 + +```bash +pip install kiwisolver==1.4.7 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/32185983](https://gitlab.com/riseproject/python/wheel_builder/-/packages/32185983) +
diff --git a/docs/packages/libcst.md b/docs/packages/libcst.md new file mode 100644 index 0000000..559ad7b --- /dev/null +++ b/docs/packages/libcst.md @@ -0,0 +1,23 @@ +--- +title: libcst +layout: default +parent: Supported Packages +--- + + + +# libcst + +- **Source Code:** [https://github.com/Instagram/LibCST](https://github.com/Instagram/LibCST) +- **Supported versions:** + +
+1.8.6 (latest) + +```bash +pip install libcst --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT / PSF / Apache 2.0 (see more details in `LICENSE file `_) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/60755441](https://gitlab.com/riseproject/python/wheel_builder/-/packages/60755441) +
diff --git a/docs/packages/lintrunner.md b/docs/packages/lintrunner.md new file mode 100644 index 0000000..1297664 --- /dev/null +++ b/docs/packages/lintrunner.md @@ -0,0 +1,49 @@ +--- +title: lintrunner +layout: default +parent: Supported Packages +--- + + + +# lintrunner + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/lintrunner/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/suo/lintrunner](https://github.com/suo/lintrunner) +- **Supported versions:** + +
+0.12.7 (latest) + +```bash +pip install lintrunner --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34016827](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34016827) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/lintrunner/patches/v0.12.7](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/lintrunner/patches/v0.12.7) +
+ +
+0.12.5 + +```bash +pip install lintrunner==0.12.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28769984](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28769984) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/lintrunner/patches/v0.12.5](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/lintrunner/patches/v0.12.5) +
+ + +{: .warning } +> Skip linter_nonexistent_command which fails with the wrong error diff --git a/docs/packages/llguidance.md b/docs/packages/llguidance.md new file mode 100644 index 0000000..3301e6a --- /dev/null +++ b/docs/packages/llguidance.md @@ -0,0 +1,142 @@ +--- +title: llguidance +layout: default +parent: Supported Packages +--- + + + +# llguidance + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/llguidance/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/guidance-ai/llguidance](https://github.com/guidance-ai/llguidance) +- **Supported versions:** + +
+1.5.0 (latest) + +```bash +pip install llguidance --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52677578](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52677578) +
+ +
+1.4.0 + +```bash +pip install llguidance==1.4.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985626](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985626) +
+ +
+1.3.0 + +```bash +pip install llguidance==1.3.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985721](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985721) +
+ +
+1.2.0 + +```bash +pip install llguidance==1.2.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985705](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985705) +
+ +
+1.1.2 + +```bash +pip install llguidance==1.1.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985679](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985679) +
+ +
+1.1.1 + +```bash +pip install llguidance==1.1.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985646](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985646) +
+ +
+1.1.0 + +```bash +pip install llguidance==1.1.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50988117](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50988117) +
+ +
+1.0.1 + +```bash +pip install llguidance==1.0.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985621](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985621) +
+ +
+1.0.0 + +```bash +pip install llguidance==1.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985682](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985682) +
+ +
+0.7.30 + +```bash +pip install llguidance==0.7.30 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985638](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50985638) +
+ +
+0.7.29 + +```bash +pip install llguidance==0.7.29 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40428491](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40428491) +
diff --git a/docs/packages/lxml.md b/docs/packages/lxml.md new file mode 100644 index 0000000..6c08c00 --- /dev/null +++ b/docs/packages/lxml.md @@ -0,0 +1,32 @@ +--- +title: lxml +layout: default +parent: Supported Packages +--- + + + +# lxml + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/lxml/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/lxml/lxml](https://github.com/lxml/lxml) +- **Supported versions:** + +
+5.3.0 (latest) + +```bash +pip install lxml --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28923876](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28923876) +
diff --git a/docs/packages/markupsafe.md b/docs/packages/markupsafe.md new file mode 100644 index 0000000..cf60516 --- /dev/null +++ b/docs/packages/markupsafe.md @@ -0,0 +1,54 @@ +--- +title: MarkupSafe +layout: default +parent: Supported Packages +--- + + + +# MarkupSafe + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/MarkupSafe/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/pallets/markupsafe](https://github.com/pallets/markupsafe) +- **Supported versions:** + +
+3.0.2 (latest) + +```bash +pip install MarkupSafe --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34169682](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34169682) +
+ +
+3.0.1 + +```bash +pip install MarkupSafe==3.0.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34170317](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34170317) +
+ +
+2.1.5 + +```bash +pip install MarkupSafe==2.1.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/25007535](https://gitlab.com/riseproject/python/wheel_builder/-/packages/25007535) +
diff --git a/docs/packages/matplotlib.md b/docs/packages/matplotlib.md new file mode 100644 index 0000000..dd122a3 --- /dev/null +++ b/docs/packages/matplotlib.md @@ -0,0 +1,126 @@ +--- +title: matplotlib +layout: default +parent: Supported Packages +--- + + + +# matplotlib + +- **Source Code:** [https://github.com/matplotlib/matplotlib](https://github.com/matplotlib/matplotlib) +- **Supported versions:** + +
+3.10.9 (latest) + +```bash +pip install matplotlib --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Matplotlib license +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59048820](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59048820) +
+ +
+3.10.8 + +```bash +pip install matplotlib==3.10.8 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Matplotlib license +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51627799](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51627799) +
+ +
+3.10.7 + +```bash +pip install matplotlib==3.10.7 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Matplotlib license +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51627665](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51627665) +
+ +
+3.10.6 + +```bash +pip install matplotlib==3.10.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Matplotlib license +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51627850](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51627850) +
+ +
+3.10.5 + +```bash +pip install matplotlib==3.10.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Matplotlib license +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51627807](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51627807) +
+ +
+3.10.3 + +```bash +pip install matplotlib==3.10.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Matplotlib license +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39276429](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39276429) +
+ +
+3.10.2 + +```bash +pip install matplotlib==3.10.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Matplotlib license +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39276449](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39276449) +
+ +
+3.10.1 + +```bash +pip install matplotlib==3.10.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Matplotlib license +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39276454](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39276454) +
+ +
+3.10.0 + +```bash +pip install matplotlib==3.10.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Matplotlib license +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39276455](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39276455) +
+ +
+3.9.2 + +```bash +pip install matplotlib==3.9.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Matplotlib license +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/32248400](https://gitlab.com/riseproject/python/wheel_builder/-/packages/32248400) +
+ + +{: .warning } +> Tests not currently run diff --git a/docs/packages/maturin.md b/docs/packages/maturin.md new file mode 100644 index 0000000..0134fd4 --- /dev/null +++ b/docs/packages/maturin.md @@ -0,0 +1,43 @@ +--- +title: maturin +layout: default +parent: Supported Packages +--- + + + +# maturin + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/maturin/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/PyO3/maturin](https://github.com/PyO3/maturin) +- **Supported versions:** + +
+1.8.1 (latest) + +```bash +pip install maturin --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34039879](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34039879) +
+ +
+1.7.1 + +```bash +pip install maturin==1.7.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28763435](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28763435) +
diff --git a/docs/packages/ml-dtypes.md b/docs/packages/ml-dtypes.md new file mode 100644 index 0000000..d208c00 --- /dev/null +++ b/docs/packages/ml-dtypes.md @@ -0,0 +1,42 @@ +--- +title: ml-dtypes +layout: default +parent: Supported Packages +--- + + + +# ml-dtypes + +- **Source Code:** [https://github.com/jax-ml/ml_dtypes](https://github.com/jax-ml/ml_dtypes) +- **Supported versions:** + +
+0.5.4 (latest) + +```bash +pip install ml-dtypes --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 / MPL-2.0 (eigen) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51686616](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51686616) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/ml_dtypes/-/jobs/12783630296/artifacts/file/wheelhouse/eigen.tar.gz) to sources of bundled MPL libraries. + +
+ +
+0.5.3 + +```bash +pip install ml-dtypes==0.5.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 / MPL-2.0 (eigen) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/47660254](https://gitlab.com/riseproject/python/wheel_builder/-/packages/47660254) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/ml_dtypes/-/jobs/11774839156/artifacts/file/wheelhouse/eigen.tar.gz) to sources of bundled MPL libraries. + +
diff --git a/docs/packages/msgpack.md b/docs/packages/msgpack.md new file mode 100644 index 0000000..5a8153d --- /dev/null +++ b/docs/packages/msgpack.md @@ -0,0 +1,65 @@ +--- +title: msgpack +layout: default +parent: Supported Packages +--- + + + +# msgpack + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/msgpack/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/msgpack/msgpack-python](https://github.com/msgpack/msgpack-python) +- **Supported versions:** + +
+1.1.2 (latest) + +```bash +pip install msgpack --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54297607](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54297607) +
+ +
+1.1.1 + +```bash +pip install msgpack==1.1.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54297732](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54297732) +
+ +
+1.1.0 + +```bash +pip install msgpack==1.1.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/32094771](https://gitlab.com/riseproject/python/wheel_builder/-/packages/32094771) +
+ +
+1.0.8 + +```bash +pip install msgpack==1.0.8 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/25107786](https://gitlab.com/riseproject/python/wheel_builder/-/packages/25107786) +
diff --git a/docs/packages/msgspec.md b/docs/packages/msgspec.md new file mode 100644 index 0000000..01f8a4a --- /dev/null +++ b/docs/packages/msgspec.md @@ -0,0 +1,34 @@ +--- +title: msgspec +layout: default +parent: Supported Packages +--- + + + +# msgspec + +- **Source Code:** [https://github.com/jcrist/msgspec/](https://github.com/jcrist/msgspec/) +- **Supported versions:** + +
+0.20.0 (latest) + +```bash +pip install msgspec --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52053047](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52053047) +
+ +
+0.19.0 + +```bash +pip install msgspec==0.19.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38126374](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38126374) +
diff --git a/docs/packages/multidict.md b/docs/packages/multidict.md new file mode 100644 index 0000000..eadef2c --- /dev/null +++ b/docs/packages/multidict.md @@ -0,0 +1,133 @@ +--- +title: multidict +layout: default +parent: Supported Packages +--- + + + +# multidict + +- **Source Code:** [https://github.com/aio-libs/multidict](https://github.com/aio-libs/multidict) +- **Supported versions:** + +
+6.7.1 (latest) + +```bash +pip install multidict --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52078547](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52078547) +
+ +
+6.7.0 + +```bash +pip install multidict==6.7.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51147062](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51147062) +
+ +
+6.6.4 + +```bash +pip install multidict==6.6.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51147050](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51147050) +
+ +
+6.6.3 + +```bash +pip install multidict==6.6.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51146714](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51146714) +
+ +
+6.6.2 + +```bash +pip install multidict==6.6.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51146713](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51146713) +
+ +
+6.5.1 + +```bash +pip install multidict==6.5.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51146666](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51146666) +
+ +
+6.4.4 + +```bash +pip install multidict==6.4.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40330023](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40330023) +
+ +
+6.4.3 + +```bash +pip install multidict==6.4.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39285998](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39285998) +
+ +
+6.4.2 + +```bash +pip install multidict==6.4.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39285979](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39285979) +
+ +
+6.2.0 + +```bash +pip install multidict==6.2.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37581521](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37581521) +
+ +
+6.1.0 + +```bash +pip install multidict==6.1.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/35415159](https://gitlab.com/riseproject/python/wheel_builder/-/packages/35415159) +
diff --git a/docs/packages/nh3.md b/docs/packages/nh3.md new file mode 100644 index 0000000..a859972 --- /dev/null +++ b/docs/packages/nh3.md @@ -0,0 +1,109 @@ +--- +title: nh3 +layout: default +parent: Supported Packages +--- + + + +# nh3 + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/nh3/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/messense/nh3](https://github.com/messense/nh3) +- **Supported versions:** + +
+0.3.2 (latest) + +```bash +pip install nh3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51636744](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51636744) +
+ +
+0.3.1 + +```bash +pip install nh3==0.3.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51620916](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51620916) +
+ +
+0.3.0 + +```bash +pip install nh3==0.3.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51620283](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51620283) +
+ +
+0.2.22 + +```bash +pip install nh3==0.2.22 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51541237](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51541237) +
+ +
+0.2.21 + +```bash +pip install nh3==0.2.21 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37597233](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37597233) +
+ +
+0.2.20 + +```bash +pip install nh3==0.2.20 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37596585](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37596585) +
+ +
+0.2.19 + +```bash +pip install nh3==0.2.19 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37596586](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37596586) +
+ +
+0.2.18 + +```bash +pip install nh3==0.2.18 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28884625](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28884625) +
diff --git a/docs/packages/ninja.md b/docs/packages/ninja.md new file mode 100644 index 0000000..0746423 --- /dev/null +++ b/docs/packages/ninja.md @@ -0,0 +1,58 @@ +--- +title: ninja +layout: default +parent: Supported Packages +--- + + + +# ninja + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/ninja/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/scikit-build/ninja-python-distributions](https://github.com/scikit-build/ninja-python-distributions) +- **Supported versions:** + +
+1.11.1.3 (latest) + +```bash +pip install ninja --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/33899087](https://gitlab.com/riseproject/python/wheel_builder/-/packages/33899087) +
+ +
+1.11.1.2 + +```bash +pip install ninja==1.11.1.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/33898863](https://gitlab.com/riseproject/python/wheel_builder/-/packages/33898863) +
+ +
+1.11.1.1 + +```bash +pip install ninja==1.11.1.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/24823354](https://gitlab.com/riseproject/python/wheel_builder/-/packages/24823354) +
+ + +{: .note } +> Provides [ninja](https://github.com/Kitware/ninja) diff --git a/docs/packages/numpy.md b/docs/packages/numpy.md new file mode 100644 index 0000000..c160fd5 --- /dev/null +++ b/docs/packages/numpy.md @@ -0,0 +1,192 @@ +--- +title: numpy +layout: default +parent: Supported Packages +--- + + + +# numpy + +- **Source Code:** [https://github.com/numpy/numpy](https://github.com/numpy/numpy) +- **Supported versions:** + +
+2.4.3 (latest) + +```bash +pip install numpy --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/57136003](https://gitlab.com/riseproject/python/wheel_builder/-/packages/57136003) +
+ +
+2.4.2 + +```bash +pip install numpy==2.4.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54838849](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54838849) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/13109960390/artifacts/file/wheelhouse/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+2.3.4 + +```bash +pip install numpy==2.3.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/47857535](https://gitlab.com/riseproject/python/wheel_builder/-/packages/47857535) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/11575231058/artifacts/file/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+2.3.3 + +```bash +pip install numpy==2.3.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/46832202](https://gitlab.com/riseproject/python/wheel_builder/-/packages/46832202) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/numpy/patches/v2.3.3](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/numpy/patches/v2.3.3) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/11575231058/artifacts/file/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+2.3.1 + +```bash +pip install numpy==2.3.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/42349606](https://gitlab.com/riseproject/python/wheel_builder/-/packages/42349606) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/numpy/patches/v2.3.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/numpy/patches/v2.3.1) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/10629688141/artifacts/file/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+2.2.2 + +```bash +pip install numpy==2.2.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34785817](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34785817) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/numpy/-/jobs/9001310054/artifacts/file/openblas-libs/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+2.2.0 + +```bash +pip install numpy==2.2.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34779586](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34779586) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/numpy/-/jobs/8999062316/artifacts/file/openblas-libs/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+2.1.3 + +```bash +pip install numpy==2.1.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/32215751](https://gitlab.com/riseproject/python/wheel_builder/-/packages/32215751) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/numpy/-/jobs/8339576134/artifacts/file/openblas-libs/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+2.0.2 + +```bash +pip install numpy==2.0.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/35242201](https://gitlab.com/riseproject/python/wheel_builder/-/packages/35242201) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/numpy/patches/v2.0.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/numpy/patches/v2.0.2) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/numpy/-/jobs/9112964324/artifacts/file/openblas-libs/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+2.0.1 + +```bash +pip install numpy==2.0.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/27953470](https://gitlab.com/riseproject/python/wheel_builder/-/packages/27953470) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/numpy/-/jobs/7506852899/artifacts/file/openblas-libs/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+2.0.0 + +```bash +pip install numpy==2.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/26602494](https://gitlab.com/riseproject/python/wheel_builder/-/packages/26602494) + +{: .note } +> Links to sources of bundled GPL libraries are here ( [linux](https://gitlab.com/riseproject/python/numpy/-/jobs/7154261612/artifacts/file/openblas-libs/gpl-sources64.tar), [manylinux_2_35](https://gitlab.com/riseproject/python/numpy/-/jobs/7200185627/artifacts/file/openblas-libs/gpl-sources64.tar) ) + +
+ +
+1.26.4 + +```bash +pip install numpy==1.26.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/24885287](https://gitlab.com/riseproject/python/wheel_builder/-/packages/24885287) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/numpy/patches/v1.26.4](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/numpy/patches/v1.26.4) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/numpy/-/jobs/6709113306/artifacts/browse/wheelhouse/) to sources of bundled GPL libraries + +
diff --git a/docs/packages/onnx.md b/docs/packages/onnx.md new file mode 100644 index 0000000..6c0247d --- /dev/null +++ b/docs/packages/onnx.md @@ -0,0 +1,66 @@ +--- +title: onnx +layout: default +parent: Supported Packages +--- + + + +# onnx + +- **Source Code:** [https://github.com/onnx/onnx](https://github.com/onnx/onnx) +- **Supported versions:** + +
+1.21.0 (latest) + +```bash +pip install onnx --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache License v2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59103351](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59103351) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/onnx/patches/v1.21.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/onnx/patches/v1.21.0) +
+ +
+1.20.1 + +```bash +pip install onnx==1.20.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache License v2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59099453](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59099453) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/onnx/patches/v1.20.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/onnx/patches/v1.20.1) +
+ +
+1.20.0 + +```bash +pip install onnx==1.20.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache License v2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59098925](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59098925) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/onnx/patches/v1.20.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/onnx/patches/v1.20.0) +
+ +
+1.19.1 + +```bash +pip install onnx==1.19.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache License v2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/48177246](https://gitlab.com/riseproject/python/wheel_builder/-/packages/48177246) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/onnx/patches/v1.19.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/onnx/patches/v1.19.1) +
+ + +{: .warning } +> onnx links against abseil, which is Apache-2.0 licensed. See the +> LICENSE_NOTES.md file included in the wheel for licensing information +> about that project. diff --git a/docs/packages/openai-harmony.md b/docs/packages/openai-harmony.md new file mode 100644 index 0000000..a26a168 --- /dev/null +++ b/docs/packages/openai-harmony.md @@ -0,0 +1,45 @@ +--- +title: openai-harmony +layout: default +parent: Supported Packages +--- + + + +# openai-harmony + +- **Source Code:** [https://github.com/openai/harmony](https://github.com/openai/harmony) +- **Supported versions:** + +
+0.0.8 (latest) + +```bash +pip install openai-harmony --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/57064376](https://gitlab.com/riseproject/python/wheel_builder/-/packages/57064376) +
+ +
+0.0.6 + +```bash +pip install openai-harmony==0.0.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/57064370](https://gitlab.com/riseproject/python/wheel_builder/-/packages/57064370) +
+ +
+0.0.4 + +```bash +pip install openai-harmony==0.0.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/44635590](https://gitlab.com/riseproject/python/wheel_builder/-/packages/44635590) +
diff --git a/docs/packages/optree.md b/docs/packages/optree.md new file mode 100644 index 0000000..75cb2c4 --- /dev/null +++ b/docs/packages/optree.md @@ -0,0 +1,76 @@ +--- +title: optree +layout: default +parent: Supported Packages +--- + + + +# optree + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/optree/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/metaopt/optree](https://github.com/metaopt/optree) +- **Supported versions:** + +
+0.13.1 (latest) + +```bash +pip install optree --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/35089229](https://gitlab.com/riseproject/python/wheel_builder/-/packages/35089229) +
+ +
+0.13.0 + +```bash +pip install optree==0.13.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/35089227](https://gitlab.com/riseproject/python/wheel_builder/-/packages/35089227) +
+ +
+0.12.1 + +```bash +pip install optree==0.12.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/27987902](https://gitlab.com/riseproject/python/wheel_builder/-/packages/27987902) +
+ +
+0.12.0 + +```bash +pip install optree==0.12.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/27987730](https://gitlab.com/riseproject/python/wheel_builder/-/packages/27987730) +
+ +
+0.11.0 + +```bash +pip install optree==0.11.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/25018739](https://gitlab.com/riseproject/python/wheel_builder/-/packages/25018739) +
diff --git a/docs/packages/orjson.md b/docs/packages/orjson.md new file mode 100644 index 0000000..449812d --- /dev/null +++ b/docs/packages/orjson.md @@ -0,0 +1,89 @@ +--- +title: orjson +layout: default +parent: Supported Packages +--- + + + +# orjson + +- **Source Code:** [https://github.com/ijl/orjson](https://github.com/ijl/orjson) +- **Supported versions:** + +
+3.11.9 (latest) + +```bash +pip install orjson --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 OR MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59690049](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59690049) +
+ +
+3.11.8 + +```bash +pip install orjson==3.11.8 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 OR MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/58876272](https://gitlab.com/riseproject/python/wheel_builder/-/packages/58876272) +
+ +
+3.11.7 + +```bash +pip install orjson==3.11.7 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 OR MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52678525](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52678525) +
+ +
+3.11.6 + +```bash +pip install orjson==3.11.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 OR MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52493137](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52493137) +
+ +
+3.11.5 + +```bash +pip install orjson==3.11.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 OR MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51923219](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51923219) +
+ +
+3.11.4 + +```bash +pip install orjson==3.11.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 OR MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51923223](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51923223) +
+ +
+3.11.3 + +```bash +pip install orjson==3.11.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 OR MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/45722770](https://gitlab.com/riseproject/python/wheel_builder/-/packages/45722770) +
diff --git a/docs/packages/outlines_core.md b/docs/packages/outlines_core.md new file mode 100644 index 0000000..76b9f94 --- /dev/null +++ b/docs/packages/outlines_core.md @@ -0,0 +1,82 @@ +--- +title: outlines-core +layout: default +parent: Supported Packages +--- + + + +# outlines-core + +- **Source Code:** [https://github.com/dottxt-ai/outlines-core](https://github.com/dottxt-ai/outlines-core) +- **Supported versions:** + +
+0.2.11 (latest) + +```bash +pip install outlines-core --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40611077](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40611077) +
+ +
+0.2.10 + +```bash +pip install outlines-core==0.2.10 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40705673](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40705673) +
+ +
+0.2.9 + +```bash +pip install outlines-core==0.2.9 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40705697](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40705697) +
+ +
+0.2.2 + +```bash +pip install outlines-core==0.2.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40703781](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40703781) +
+ +
+0.1.27 + +```bash +pip install outlines-core==0.1.27 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40703162](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40703162) +
+ +
+0.1.26 + +```bash +pip install outlines-core==0.1.26 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache-2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40609121](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40609121) +
+ + +{: .warning } +> The Python tests are skipped as they require torch, but the rust unit tests are run. diff --git a/docs/packages/pandas.md b/docs/packages/pandas.md new file mode 100644 index 0000000..9794819 --- /dev/null +++ b/docs/packages/pandas.md @@ -0,0 +1,163 @@ +--- +title: pandas +layout: default +parent: Supported Packages +--- + + + +# pandas + +- **Source Code:** [https://github.com/pandas-dev/pandas](https://github.com/pandas-dev/pandas) +- **Supported versions:** + +
+3.0.3 (latest) + +```bash +pip install pandas --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/60442128](https://gitlab.com/riseproject/python/wheel_builder/-/packages/60442128) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v3.0.3](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v3.0.3) + +{: .warning } +> We skip certain NaN tests on riscv64 because canonical NaN handling differs from other common architectures. + +
+ +
+3.0.2 + +```bash +pip install pandas==3.0.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59611974](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59611974) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v3.0.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v3.0.2) + +{: .warning } +> We skip certain NaN tests on riscv64 because canonical NaN handling differs from other common architectures. + +
+ +
+3.0.1 + +```bash +pip install pandas==3.0.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/57072298](https://gitlab.com/riseproject/python/wheel_builder/-/packages/57072298) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v3.0.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v3.0.1) + +{: .warning } +> We skip certain NaN tests on riscv64 because canonical NaN handling differs from other common architectures. + +
+ +
+3.0.0 + +```bash +pip install pandas==3.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/57079889](https://gitlab.com/riseproject/python/wheel_builder/-/packages/57079889) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v3.0.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v3.0.0) + +{: .warning } +> We skip certain NaN tests on riscv64 because canonical NaN handling differs from other common architectures. + +
+ +
+2.3.3 + +```bash +pip install pandas==2.3.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/48954662](https://gitlab.com/riseproject/python/wheel_builder/-/packages/48954662) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v2.3.3](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v2.3.3) + +{: .warning } +> We disable test_rolling_var_numerical_issues. This test is fixed on main +> but not on the 2.3.3 tag. We also patch the build to use Cython 3.1.2 +> since 3.2.0 seems to cause issues with pickling data types. See also +> [issue 63078](https://github.com/pandas-dev/pandas/issues/63078). + +
+ +
+2.3.2 + +```bash +pip install pandas==2.3.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/48941312](https://gitlab.com/riseproject/python/wheel_builder/-/packages/48941312) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v2.3.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pandas/patches/v2.3.2) + +{: .warning } +> We disable test_rolling_var_numerical_issues. This test is fixed on main +> but not on the 2.3.2 tag. We also patch the build to use Cython 3.1.2 +> since 3.2.0 seems to cause issues with pickling data types. See also +> [issue 63078](https://github.com/pandas-dev/pandas/issues/63078). + +
+ +
+2.3.1 + +```bash +pip install pandas==2.3.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/42451954](https://gitlab.com/riseproject/python/wheel_builder/-/packages/42451954) + +{: .warning } +> We disable test_rolling_var_numerical_issues. This test is fixed on main but not on the 2.3.1 tag. + +
+ +
+2.2.3 + +```bash +pip install pandas==2.2.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36617745](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36617745) + +{: .warning } +> We disable test_rolling_var_numerical_issues and test_value_counts_nat. These tests are fixed on main but not on the 2.2.3 tag. + +
+ +
+2.2.2 + +```bash +pip install pandas==2.2.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28528458](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28528458) + +{: .note } +> We append the files in the LICENSES directory into the LICENSE file in the wheel, resulting in a dirty tag. See [issue 58632](https://github.com/pandas-dev/pandas/issues/58632) + + +{: .warning } +> We disable test_rolling_var_numerical_issues. + +
diff --git a/docs/packages/patchelf.md b/docs/packages/patchelf.md new file mode 100644 index 0000000..a1b6903 --- /dev/null +++ b/docs/packages/patchelf.md @@ -0,0 +1,53 @@ +--- +title: patchelf +layout: default +parent: Supported Packages +--- + + + +# patchelf + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/patchelf/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/mayeut/patchelf-pypi](https://github.com/mayeut/patchelf-pypi) +- **Supported versions:** + +
+0.17.2.2 (latest) + +```bash +pip install patchelf --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0/GPL v3 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/41028239](https://gitlab.com/riseproject/python/wheel_builder/-/packages/41028239) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/patchelf-pypi/patches/v0.17.2.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/patchelf-pypi/patches/v0.17.2.2) + +{: .note } +> Provides [patchelf](https://github.com/NixOS/patchelf/). Link to [GPL sources](https://gitlab.com/riseproject/python/patchelf-pypi/-/jobs/10445199408/artifacts/browse) + +
+ +
+0.17.2.1 + +```bash +pip install patchelf==0.17.2.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0/GPL v3 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/31879974](https://gitlab.com/riseproject/python/wheel_builder/-/packages/31879974) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/patchelf-pypi/patches/v0.17.2.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/patchelf-pypi/patches/v0.17.2.1) + +{: .note } +> Provides [patchelf](https://github.com/NixOS/patchelf/). Link to [GPL sources](https://gitlab.com/riseproject/python/patchelf-pypi/-/jobs/8293872732/artifacts/browse) + +
diff --git a/docs/packages/pillow.md b/docs/packages/pillow.md new file mode 100644 index 0000000..0a68ed8 --- /dev/null +++ b/docs/packages/pillow.md @@ -0,0 +1,130 @@ +--- +title: pillow +layout: default +parent: Supported Packages +--- + + + +# pillow + +- **Source Code:** [https://github.com/python-pillow/Pillow](https://github.com/python-pillow/Pillow) +- **Supported versions:** + +
+12.2.0 (latest) + +```bash +pip install pillow --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT-CMU License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59020271](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59020271) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/12.2.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/12.2.0) + +{: .note } +> - Disable SIMD for libjpeg_turbo which does not provide SIMD riscv support for version < 3.2, and current version embedded in Pillow is JPEGTURBO_VERSION=3.1.4.1 +> +> - Disable arch-specific AOM optimization. See https://aomedia.issues.chromium.org/issues/492439207 + +
+ +
+12.1.1 + +```bash +pip install pillow==12.1.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT-CMU License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54302263](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54302263) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/12.1.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/12.1.1) +
+ +
+12.1.0 + +```bash +pip install pillow==12.1.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT-CMU License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52151123](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52151123) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/12.1.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/12.1.0) +
+ +
+12.0.0 + +```bash +pip install pillow==12.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT-CMU License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/47718015](https://gitlab.com/riseproject/python/wheel_builder/-/packages/47718015) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/12.0.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/12.0.0) +
+ +
+11.3.0 + +```bash +pip install pillow==11.3.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT-CMU License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/43200442](https://gitlab.com/riseproject/python/wheel_builder/-/packages/43200442) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/11.3.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/11.3.0) + +{: .note } +> test_pyroma is incompatible with the latest version of pyroma and is skipped. + +
+ +
+11.1.0 + +```bash +pip install pillow==11.1.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT-CMU License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34287279](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34287279) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/11.1.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/11.1.0) +
+ +
+11.0.0 + +```bash +pip install pillow==11.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** HPND License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/32245668](https://gitlab.com/riseproject/python/wheel_builder/-/packages/32245668) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/11.0.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/11.0.0) +
+ +
+10.4.0 + +```bash +pip install pillow==10.4.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** HPND License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28470069](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28470069) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/10.4.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/10.4.0) +
+ +
+10.3.0 + +```bash +pip install pillow==10.3.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** HPND License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/25077580](https://gitlab.com/riseproject/python/wheel_builder/-/packages/25077580) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/10.3.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/Pillow/patches/10.3.0) +
diff --git a/docs/packages/polars-runtime-32.md b/docs/packages/polars-runtime-32.md new file mode 100644 index 0000000..053e8ab --- /dev/null +++ b/docs/packages/polars-runtime-32.md @@ -0,0 +1,78 @@ +--- +title: polars-runtime-32 +layout: default +parent: Supported Packages +--- + + + +# polars-runtime-32 + +- **Source Code:** [https://github.com/pola-rs/polars](https://github.com/pola-rs/polars) +- **Supported versions:** + +
+1.41.2 (latest) + +```bash +pip install polars-runtime-32 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/61156294](https://gitlab.com/riseproject/python/wheel_builder/-/packages/61156294) +
+ +
+1.41.1 + +```bash +pip install polars-runtime-32==1.41.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/60992923](https://gitlab.com/riseproject/python/wheel_builder/-/packages/60992923) +
+ +
+1.41.0 + +```bash +pip install polars-runtime-32==1.41.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/60817097](https://gitlab.com/riseproject/python/wheel_builder/-/packages/60817097) +
+ +
+1.40.1 + +```bash +pip install polars-runtime-32==1.40.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/58992391](https://gitlab.com/riseproject/python/wheel_builder/-/packages/58992391) +
+ +
+1.40.0 + +```bash +pip install polars-runtime-32==1.40.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/58884967](https://gitlab.com/riseproject/python/wheel_builder/-/packages/58884967) +
+ +
+1.39.3 + +```bash +pip install polars-runtime-32==1.39.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/57089456](https://gitlab.com/riseproject/python/wheel_builder/-/packages/57089456) +
diff --git a/docs/packages/polars-runtime-64.md b/docs/packages/polars-runtime-64.md new file mode 100644 index 0000000..ff694a3 --- /dev/null +++ b/docs/packages/polars-runtime-64.md @@ -0,0 +1,78 @@ +--- +title: polars-runtime-64 +layout: default +parent: Supported Packages +--- + + + +# polars-runtime-64 + +- **Source Code:** [https://github.com/pola-rs/polars](https://github.com/pola-rs/polars) +- **Supported versions:** + +
+1.41.2 (latest) + +```bash +pip install polars-runtime-64 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/61156311](https://gitlab.com/riseproject/python/wheel_builder/-/packages/61156311) +
+ +
+1.41.1 + +```bash +pip install polars-runtime-64==1.41.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/60992987](https://gitlab.com/riseproject/python/wheel_builder/-/packages/60992987) +
+ +
+1.41.0 + +```bash +pip install polars-runtime-64==1.41.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/60817132](https://gitlab.com/riseproject/python/wheel_builder/-/packages/60817132) +
+ +
+1.40.1 + +```bash +pip install polars-runtime-64==1.40.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/58992419](https://gitlab.com/riseproject/python/wheel_builder/-/packages/58992419) +
+ +
+1.40.0 + +```bash +pip install polars-runtime-64==1.40.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/58884990](https://gitlab.com/riseproject/python/wheel_builder/-/packages/58884990) +
+ +
+1.39.3 + +```bash +pip install polars-runtime-64==1.39.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/57089487](https://gitlab.com/riseproject/python/wheel_builder/-/packages/57089487) +
diff --git a/docs/packages/propcache.md b/docs/packages/propcache.md new file mode 100644 index 0000000..6ae4021 --- /dev/null +++ b/docs/packages/propcache.md @@ -0,0 +1,78 @@ +--- +title: propcache +layout: default +parent: Supported Packages +--- + + + +# propcache + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/propcache/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/aio-libs/propcache/](https://github.com/aio-libs/propcache/) +- **Supported versions:** + +
+0.4.1 (latest) + +```bash +pip install propcache --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54299027](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54299027) +
+ +
+0.3.1 + +```bash +pip install propcache==0.3.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40328571](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40328571) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/propcache/patches/v0.3.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/propcache/patches/v0.3.1) +
+ +
+0.3.0 + +```bash +pip install propcache==0.3.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36352144](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36352144) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/propcache/patches/v0.3.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/propcache/patches/v0.3.0) +
+ +
+0.2.1 + +```bash +pip install propcache==0.2.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36359247](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36359247) +
+ +
+0.2.0 + +```bash +pip install propcache==0.2.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40338236](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40338236) +
diff --git a/docs/packages/psutil.md b/docs/packages/psutil.md new file mode 100644 index 0000000..7df60bd --- /dev/null +++ b/docs/packages/psutil.md @@ -0,0 +1,159 @@ +--- +title: psutil +layout: default +parent: Supported Packages +--- + + + +# psutil + +- **Source Code:** [https://github.com/giampaolo/psutil](https://github.com/giampaolo/psutil) +- **Supported versions:** + +
+7.2.2 (latest) + +```bash +pip install psutil --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/56879679](https://gitlab.com/riseproject/python/wheel_builder/-/packages/56879679) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.2.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.2.2) +
+ +
+7.2.1 + +```bash +pip install psutil==7.2.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51630157](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51630157) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.2.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.2.1) +
+ +
+7.2.0 + +```bash +pip install psutil==7.2.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51627981](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51627981) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.2.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.2.0) +
+ +
+7.1.3 + +```bash +pip install psutil==7.1.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51626642](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51626642) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.1.3](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.1.3) +
+ +
+7.1.2 + +```bash +pip install psutil==7.1.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51625327](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51625327) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.1.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.1.2) +
+ +
+7.1.1 + +```bash +pip install psutil==7.1.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51624029](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51624029) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.1.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.1.1) +
+ +
+7.1.0 + +```bash +pip install psutil==7.1.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51622213](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51622213) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.1.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.1.0) +
+ +
+7.0.0 + +```bash +pip install psutil==7.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38019320](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38019320) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.0.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-7.0.0) +
+ +
+6.1.1 + +```bash +pip install psutil==6.1.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38020131](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38020131) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-6.1.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-6.1.1) +
+ +
+6.1.0 + +```bash +pip install psutil==6.1.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38020746](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38020746) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-6.1.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-6.1.0) +
+ +
+6.0.0 + +```bash +pip install psutil==6.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38021236](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38021236) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-6.0.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/psutil/patches/release-6.0.0) +
+ +
+5.9.8 + +```bash +pip install psutil==5.9.8 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/25070949](https://gitlab.com/riseproject/python/wheel_builder/-/packages/25070949) + +{: .warning } +> Tests are disabled as they fail on riscv64. Investigation needed! + +
diff --git a/docs/packages/pydantic-core.md b/docs/packages/pydantic-core.md new file mode 100644 index 0000000..12c2a36 --- /dev/null +++ b/docs/packages/pydantic-core.md @@ -0,0 +1,167 @@ +--- +title: pydantic-core +layout: default +parent: Supported Packages +--- + + + +# pydantic-core + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/pydantic-core/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/pydantic/pydantic-core](https://github.com/pydantic/pydantic-core) +- **Supported versions:** + +
+2.41.5 (latest) + +```bash +pip install pydantic-core --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49249284](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49249284) + +{: .note } +> Built without PGO + +
+ +
+2.41.4 + +```bash +pip install pydantic-core==2.41.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49136543](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49136543) + +{: .note } +> Built without PGO + +
+ +
+2.41.2 + +```bash +pip install pydantic-core==2.41.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49123887](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49123887) + +{: .note } +> Built without PGO + +
+ +
+2.41.1 + +```bash +pip install pydantic-core==2.41.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49116042](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49116042) + +{: .note } +> Built without PGO + +
+ +
+2.41.0 + +```bash +pip install pydantic-core==2.41.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49112280](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49112280) + +{: .note } +> Built without PGO + +
+ +
+2.40.1 + +```bash +pip install pydantic-core==2.40.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49105431](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49105431) + +{: .note } +> Built without PGO + +
+ +
+2.40.0 + +```bash +pip install pydantic-core==2.40.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49044073](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49044073) + +{: .note } +> Built without PGO + +
+ +
+2.39.0 + +```bash +pip install pydantic-core==2.39.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/44511802](https://gitlab.com/riseproject/python/wheel_builder/-/packages/44511802) + +{: .note } +> Built without PGO + +
+ +
+2.33.2 + +```bash +pip install pydantic-core==2.33.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/44511712](https://gitlab.com/riseproject/python/wheel_builder/-/packages/44511712) + +{: .note } +> Built without PGO + +
+ +
+2.27.2 + +```bash +pip install pydantic-core==2.27.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34532371](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34532371) +
diff --git a/docs/packages/pynacl.md b/docs/packages/pynacl.md new file mode 100644 index 0000000..d74e9df --- /dev/null +++ b/docs/packages/pynacl.md @@ -0,0 +1,59 @@ +--- +title: PyNaCl +layout: default +parent: Supported Packages +--- + + + +# PyNaCl + +- **Source Code:** [https://github.com/pyca/pynacl/](https://github.com/pyca/pynacl/) +- **Supported versions:** + +
+1.6.2 (latest) + +```bash +pip install PyNaCl --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache License 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51277982](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51277982) +
+ +
+1.6.1 + +```bash +pip install PyNaCl==1.6.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache License 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50597321](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50597321) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pynacl/patches/1.6.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pynacl/patches/1.6.1) +
+ +
+1.6.0 + +```bash +pip install PyNaCl==1.6.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache License 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50597319](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50597319) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pynacl/patches/1.6.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pynacl/patches/1.6.0) +
+ +
+1.5.0 + +```bash +pip install PyNaCl==1.5.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache License 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39371328](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39371328) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pynacl/patches/1.5.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pynacl/patches/1.5.0) +
diff --git a/docs/packages/pyuwsgi.md b/docs/packages/pyuwsgi.md new file mode 100644 index 0000000..1e62969 --- /dev/null +++ b/docs/packages/pyuwsgi.md @@ -0,0 +1,23 @@ +--- +title: pyuwsgi +layout: default +parent: Supported Packages +--- + + + +# pyuwsgi + +- **Source Code:** [https://github.com/lincolnloop/pyuwsgi-wheels](https://github.com/lincolnloop/pyuwsgi-wheels) +- **Supported versions:** + +
+2.0.30 (latest) + +```bash +pip install pyuwsgi --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** GPL2 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/60776170](https://gitlab.com/riseproject/python/wheel_builder/-/packages/60776170) +
diff --git a/docs/packages/pyyaml.md b/docs/packages/pyyaml.md new file mode 100644 index 0000000..f8fcefc --- /dev/null +++ b/docs/packages/pyyaml.md @@ -0,0 +1,45 @@ +--- +title: PyYAML +layout: default +parent: Supported Packages +--- + + + +# PyYAML + +- **Source Code:** [https://github.com/yaml/pyyaml](https://github.com/yaml/pyyaml) +- **Supported versions:** + +
+6.0.3 (latest) + +```bash +pip install PyYAML --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52144535](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52144535) +
+ +
+6.0.2 + +```bash +pip install PyYAML==6.0.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28444903](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28444903) +
+ +
+6.0.1 + +```bash +pip install PyYAML==6.0.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/25045851](https://gitlab.com/riseproject/python/wheel_builder/-/packages/25045851) +
diff --git a/docs/packages/pyzmq.md b/docs/packages/pyzmq.md new file mode 100644 index 0000000..f383715 --- /dev/null +++ b/docs/packages/pyzmq.md @@ -0,0 +1,132 @@ +--- +title: pyzmq +layout: default +parent: Supported Packages +--- + + + +# pyzmq + +- **Source Code:** [https://github.com/zeromq/pyzmq](https://github.com/zeromq/pyzmq) +- **Supported versions:** + +
+27.1.0 (latest) + +```bash +pip install pyzmq --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause/ISC(sodium)/MPL(zeromq) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52053906](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52053906) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/pyzmq/-/jobs/12867908816/artifacts/file/wheelhouse/zeromq-4.3.5.tar.gz) to sources of bundled MPL libraries. + +
+ +
+27.0.2 + +```bash +pip install pyzmq==27.0.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause/ISC(sodium)/MPL(zeromq) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52053698](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52053698) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/pyzmq/-/jobs/12867907307/artifacts/file/wheelhouse/zeromq-4.3.5.tar.gz) to sources of bundled MPL libraries. + +
+ +
+27.0.1 + +```bash +pip install pyzmq==27.0.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause/ISC(sodium)/MPL(zeromq) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52052546](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52052546) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/pyzmq/-/jobs/12867905352/artifacts/file/wheelhouse/zeromq-4.3.5.tar.gz) to sources of bundled MPL libraries. + +
+ +
+27.0.0 + +```bash +pip install pyzmq==27.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause/ISC(sodium)/MPL(zeromq) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52052516](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52052516) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/pyzmq/-/jobs/12867898070/artifacts/file/wheelhouse/zeromq-4.3.5.tar.gz) to sources of bundled MPL libraries. + +
+ +
+26.4.0 + +```bash +pip install pyzmq==26.4.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause/ISC(sodium)/MPL(zeromq) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40370999](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40370999) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/pyzmq/-/jobs/10318310406/artifacts/file/wheelhouse/zeromq-4.3.5.tar.gz) to sources of bundled MPL libraries. + +
+ +
+26.3.0 + +```bash +pip install pyzmq==26.3.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause/ISC(sodium)/MPL(zeromq) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40371025](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40371025) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/pyzmq/-/jobs/10318308608/artifacts/file/wheelhouse/zeromq-4.3.5.tar.gz) to sources of bundled MPL libraries. + +
+ +
+26.2.1 + +```bash +pip install pyzmq==26.2.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause/ISC(sodium)/MPL(zeromq) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40370988](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40370988) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/pyzmq/-/jobs/10318302810/artifacts/file/wheelhouse/zeromq-4.3.5.tar.gz) to sources of bundled MPL libraries. + +
+ +
+26.2.0 + +```bash +pip install pyzmq==26.2.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause/ISC(sodium)/MPL(zeromq) +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/32281776](https://gitlab.com/riseproject/python/wheel_builder/-/packages/32281776) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/pyzmq/-/jobs/8362318516/artifacts/file/wheelhouse/zeromq-4.3.5.tar.gz) to sources of bundled MPL libraries. + +
diff --git a/docs/packages/pyzstd.md b/docs/packages/pyzstd.md new file mode 100644 index 0000000..f924375 --- /dev/null +++ b/docs/packages/pyzstd.md @@ -0,0 +1,44 @@ +--- +title: pyzstd +layout: default +parent: Supported Packages +--- + + + +# pyzstd + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/pyzstd/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/Rogdham/pyzstd](https://github.com/Rogdham/pyzstd) +- **Supported versions:** + +
+0.18.0 (latest) + +```bash +pip install pyzstd --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/50020059](https://gitlab.com/riseproject/python/wheel_builder/-/packages/50020059) +
+ +
+0.17.0 + +```bash +pip install pyzstd==0.17.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40079684](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40079684) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pyzstd/patches/0.17.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/pyzstd/patches/0.17.0) +
diff --git a/docs/packages/regex.md b/docs/packages/regex.md new file mode 100644 index 0000000..daa65ea --- /dev/null +++ b/docs/packages/regex.md @@ -0,0 +1,153 @@ +--- +title: regex +layout: default +parent: Supported Packages +--- + + + +# regex + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/regex/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/mrabarnett/mrab-regex/tree/hg](https://github.com/mrabarnett/mrab-regex/tree/hg) +- **Supported versions:** + +
+2026.1.14 (latest) + +```bash +pip install regex --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51455554](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51455554) +
+ +
+2025.11.3 + +```bash +pip install regex==2025.11.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399282](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399282) +
+ +
+2025.10.23 + +```bash +pip install regex==2025.10.23 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399301](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399301) +
+ +
+2025.10.22 + +```bash +pip install regex==2025.10.22 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399299](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399299) +
+ +
+2025.9.18 + +```bash +pip install regex==2025.9.18 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399316](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399316) +
+ +
+2025.9.1 + +```bash +pip install regex==2025.9.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399316](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399316) +
+ +
+2025.8.29 + +```bash +pip install regex==2025.8.29 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399372](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399372) +
+ +
+2025.7.34 + +```bash +pip install regex==2025.7.34 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399385](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399385) +
+ +
+2025.7.33 + +```bash +pip install regex==2025.7.33 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399444](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51399444) +
+ +
+2025.7.31 + +```bash +pip install regex==2025.7.31 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51400111](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51400111) +
+ +
+2025.7.29 + +```bash +pip install regex==2025.7.29 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51400106](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51400106) +
+ +
+2024.11.6 + +```bash +pip install regex==2024.11.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/35211543](https://gitlab.com/riseproject/python/wheel_builder/-/packages/35211543) +
diff --git a/docs/packages/rignore.md b/docs/packages/rignore.md new file mode 100644 index 0000000..8e9b1dd --- /dev/null +++ b/docs/packages/rignore.md @@ -0,0 +1,78 @@ +--- +title: rignore +layout: default +parent: Supported Packages +--- + + + +# rignore + +- **Source Code:** [https://github.com/patrick91/rignore](https://github.com/patrick91/rignore) +- **Supported versions:** + +
+0.7.6 (latest) + +```bash +pip install rignore --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/56612643](https://gitlab.com/riseproject/python/wheel_builder/-/packages/56612643) +
+ +
+0.7.3 + +```bash +pip install rignore==0.7.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/56612619](https://gitlab.com/riseproject/python/wheel_builder/-/packages/56612619) +
+ +
+0.7.2 + +```bash +pip install rignore==0.7.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/56612703](https://gitlab.com/riseproject/python/wheel_builder/-/packages/56612703) +
+ +
+0.7.1 + +```bash +pip install rignore==0.7.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/56612666](https://gitlab.com/riseproject/python/wheel_builder/-/packages/56612666) +
+ +
+0.7.0 + +```bash +pip install rignore==0.7.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/56612712](https://gitlab.com/riseproject/python/wheel_builder/-/packages/56612712) +
+ +
+0.6.4 + +```bash +pip install rignore==0.6.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/45622289](https://gitlab.com/riseproject/python/wheel_builder/-/packages/45622289) +
diff --git a/docs/packages/rpds-py.md b/docs/packages/rpds-py.md new file mode 100644 index 0000000..e16ac73 --- /dev/null +++ b/docs/packages/rpds-py.md @@ -0,0 +1,32 @@ +--- +title: rpds-py +layout: default +parent: Supported Packages +--- + + + +# rpds-py + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/rpds-py/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/crate-py/rpds](https://github.com/crate-py/rpds) +- **Supported versions:** + +
+0.21.0 (latest) + +```bash +pip install rpds-py --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/32285689](https://gitlab.com/riseproject/python/wheel_builder/-/packages/32285689) +
diff --git a/docs/packages/safetensors.md b/docs/packages/safetensors.md new file mode 100644 index 0000000..5ead46d --- /dev/null +++ b/docs/packages/safetensors.md @@ -0,0 +1,95 @@ +--- +title: safetensors +layout: default +parent: Supported Packages +--- + + + +# safetensors + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/safetensors/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/huggingface/safetensors](https://github.com/huggingface/safetensors) +- **Supported versions:** + +
+0.7.0 (latest) + +```bash +pip install safetensors --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51686813](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51686813) +
+ +
+0.6.2 + +```bash +pip install safetensors==0.6.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51686808](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51686808) +
+ +
+0.6.1 + +```bash +pip install safetensors==0.6.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51686820](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51686820) +
+ +
+0.6.0.dev0 + +```bash +pip install safetensors==0.6.0.dev0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51632777](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51632777) + +{: .note } +> The tag is dirty but is consistent with [PyPI](https://pypi.org/project/safetensors/0.6.0.dev0/). + +
+ +
+0.5.3 + +```bash +pip install safetensors==0.5.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51632113](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51632113) +
+ +
+0.5.2 + +```bash +pip install safetensors==0.5.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/34776285](https://gitlab.com/riseproject/python/wheel_builder/-/packages/34776285) +
+ + +{: .warning } +> test\_flax\_comparison.py, test\_pt\_comparison.py, test\_pt\_model.py, test\_simple.py, test\_tf\_comparison.py disabled diff --git a/docs/packages/scikit-image.md b/docs/packages/scikit-image.md new file mode 100644 index 0000000..19104ea --- /dev/null +++ b/docs/packages/scikit-image.md @@ -0,0 +1,41 @@ +--- +title: scikit-image +layout: default +parent: Supported Packages +--- + + + +# scikit-image + +- **Source Code:** [https://github.com/scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +- **Supported versions:** + +
+0.25.2 (latest) + +```bash +pip install scikit-image --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39460237](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39460237) +
+ +
+0.22.0 + +```bash +pip install scikit-image==0.22.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39460362](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39460362) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scikit-image/patches/v0.22.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scikit-image/patches/v0.22.0) + +{: .note } +> Built with numpy==1.26.4 and tested with scipy==1.12.0. +> +> We disable test_all_mono (which also fails on x86 with this test configuration). + +
diff --git a/docs/packages/scipy-openblas32.md b/docs/packages/scipy-openblas32.md new file mode 100644 index 0000000..3c97ad6 --- /dev/null +++ b/docs/packages/scipy-openblas32.md @@ -0,0 +1,101 @@ +--- +title: scipy-openblas32 +layout: default +parent: Supported Packages +--- + + + +# scipy-openblas32 + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/scipy-openblas32/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/MacPython/openblas-libs](https://github.com/MacPython/openblas-libs) +- **Supported versions:** + +
+0.3.31.22.0 (latest) + +```bash +pip install scipy-openblas32 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54246107](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54246107) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.31.22](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.31.22) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/13109960387/artifacts/file/wheelhouse/gpl-sources32.tar) to sources of bundled GPL libraries + +
+ +
+0.3.30.0.1 + +```bash +pip install scipy-openblas32==0.3.30.0.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/46679931](https://gitlab.com/riseproject/python/wheel_builder/-/packages/46679931) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.30.0.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.30.0.1) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/11575231058/artifacts/file/gpl-sources32.tar) to sources of bundled GPL libraries + +
+ +
+0.3.29.0.0 + +```bash +pip install scipy-openblas32==0.3.29.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/42076735](https://gitlab.com/riseproject/python/wheel_builder/-/packages/42076735) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.29.0.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.29.0.0) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/10629688141/artifacts/file/gpl-sources32.tar) to sources of bundled GPL libraries + +
+ +
+0.3.28.0.2 + +```bash +pip install scipy-openblas32==0.3.28.0.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36775600](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36775600) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.28.0.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.28.0.2) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/9502254068/artifacts/file/gpl-sources32.tar) to sources of bundled GPL libraries + +
+ +
+0.3.27.63.1 + +```bash +pip install scipy-openblas32==0.3.27.63.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37104417](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37104417) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.27.63.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.27.63.1) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/9589024243/artifacts/file/gpl-sources32.tar) to sources of bundled GPL libraries + +
diff --git a/docs/packages/scipy-openblas64.md b/docs/packages/scipy-openblas64.md new file mode 100644 index 0000000..3ad58ef --- /dev/null +++ b/docs/packages/scipy-openblas64.md @@ -0,0 +1,101 @@ +--- +title: scipy-openblas64 +layout: default +parent: Supported Packages +--- + + + +# scipy-openblas64 + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/scipy-openblas64/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/MacPython/openblas-libs](https://github.com/MacPython/openblas-libs) +- **Supported versions:** + +
+0.3.31.22.0 (latest) + +```bash +pip install scipy-openblas64 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54246115](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54246115) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.31.22](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.31.22) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/13109960390/artifacts/file/wheelhouse/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+0.3.30.0.1 + +```bash +pip install scipy-openblas64==0.3.30.0.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/46679933](https://gitlab.com/riseproject/python/wheel_builder/-/packages/46679933) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.30.0.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.30.0.1) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/11575231058/artifacts/file/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+0.3.29.0.0 + +```bash +pip install scipy-openblas64==0.3.29.0.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/42076736](https://gitlab.com/riseproject/python/wheel_builder/-/packages/42076736) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.29.0.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.29.0.0) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/10629688141/artifacts/file/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+0.3.28.0.2 + +```bash +pip install scipy-openblas64==0.3.28.0.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36775603](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36775603) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.28.0.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.28.0.2) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/9502254068/artifacts/file/gpl-sources64.tar) to sources of bundled GPL libraries + +
+ +
+0.3.27.63.1 + +```bash +pip install scipy-openblas64==0.3.27.63.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37104419](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37104419) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.27.63.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/openblas-libs/patches/v0.3.27.63.1) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/openblas-libs/-/jobs/9589024243/artifacts/file/gpl-sources64.tar) to sources of bundled GPL libraries + +
diff --git a/docs/packages/scipy.md b/docs/packages/scipy.md new file mode 100644 index 0000000..7d35599 --- /dev/null +++ b/docs/packages/scipy.md @@ -0,0 +1,124 @@ +--- +title: scipy +layout: default +parent: Supported Packages +--- + + + +# scipy + +- **Source Code:** [https://github.com/scipy/scipy](https://github.com/scipy/scipy) +- **Supported versions:** + +
+1.15.2 (latest) + +```bash +pip install scipy --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37808270](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37808270) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scipy/patches/v1.15.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scipy/patches/v1.15.2) + +{: .warning } +> We disable the following tests as suggested in [#22839](https://github.com/scipy/scipy/issues/22839) +> +> - test_nan_inputs[sph_harm] +> - test_quad_vec_pool +> - test_quad_vec_pool_args +> - test_19_parallelization +> - TestDifferentialEvolutionSolver::test_parallel +> +> We also disable test_nan_inputs[sph_harm] as it is known to fail on riscv64 (see [#22753](https://github.com/scipy/scipy/issues/22753)) + +
+ +
+1.15.1 + +```bash +pip install scipy==1.15.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37802806](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37802806) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scipy/patches/v1.15.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scipy/patches/v1.15.1) + +{: .warning } +> We disable the following tests as suggested in [#22839](https://github.com/scipy/scipy/issues/22839) +> +> - test_nan_inputs[sph_harm] +> - test_quad_vec_pool +> - test_quad_vec_pool_args +> - test_19_parallelization +> - TestDifferentialEvolutionSolver::test_parallel +> +> We also disable test_nan_inputs[sph_harm] as it is known to fail on riscv64 (see [#22753](https://github.com/scipy/scipy/issues/22753)) + +
+ +
+1.15.0 + +```bash +pip install scipy==1.15.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37793645](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37793645) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scipy/patches/v1.15.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scipy/patches/v1.15.0) + +{: .warning } +> We disable the following tests as suggested in [#22839](https://github.com/scipy/scipy/issues/22839) +> +> - test_nan_inputs[sph_harm] +> - test_quad_vec_pool +> - test_quad_vec_pool_args +> - test_19_parallelization +> - TestDifferentialEvolutionSolver::test_parallel +> +> We also disable test_nan_inputs[sph_harm] as it is known to fail on riscv64 (see [#22753](https://github.com/scipy/scipy/issues/22753)) + +
+ +
+1.14.1 + +```bash +pip install scipy==1.14.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37776169](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37776169) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scipy/patches/v1.14.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scipy/patches/v1.14.1) + +{: .warning } +> We disable the following tests as suggested in [#22839](https://github.com/scipy/scipy/issues/22839) +> +> - test_nan_inputs[sph_harm] +> - test_quad_vec_pool +> - test_quad_vec_pool_args +> - test_19_parallelization +> - TestDifferentialEvolutionSolver::test_parallel +> +> We also disable test_nan_inputs[sph_harm] as it is known to fail on riscv64 (see [#22753](https://github.com/scipy/scipy/issues/22753)) + +
+ +
+1.12.0 + +```bash +pip install scipy==1.12.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/24951576](https://gitlab.com/riseproject/python/wheel_builder/-/packages/24951576) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scipy/patches/v1.12.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/scipy/patches/v1.12.0) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/scipy/-/jobs/6725437840/artifacts/browse/wheelhouse/) to sources of bundled GPL libraries + +
diff --git a/docs/packages/sentencepiece.md b/docs/packages/sentencepiece.md new file mode 100644 index 0000000..ab9fa37 --- /dev/null +++ b/docs/packages/sentencepiece.md @@ -0,0 +1,34 @@ +--- +title: sentencepiece +layout: default +parent: Supported Packages +--- + + + +# sentencepiece + +- **Source Code:** [https://github.com/google/sentencepiece](https://github.com/google/sentencepiece) +- **Supported versions:** + +
+0.2.1 (latest) + +```bash +pip install sentencepiece --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/52049806](https://gitlab.com/riseproject/python/wheel_builder/-/packages/52049806) +
+ +
+0.2.0 + +```bash +pip install sentencepiece==0.2.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/32380832](https://gitlab.com/riseproject/python/wheel_builder/-/packages/32380832) +
diff --git a/docs/packages/setproctitle.md b/docs/packages/setproctitle.md new file mode 100644 index 0000000..a624c99 --- /dev/null +++ b/docs/packages/setproctitle.md @@ -0,0 +1,47 @@ +--- +title: setproctitle +layout: default +parent: Supported Packages +--- + + + +# setproctitle + +- **Source Code:** [https://github.com/dvarrazzo/py-setproctitle](https://github.com/dvarrazzo/py-setproctitle) +- **Supported versions:** + +
+1.3.7 (latest) + +```bash +pip install setproctitle --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/46131943](https://gitlab.com/riseproject/python/wheel_builder/-/packages/46131943) +
+ +
+1.3.6 + +```bash +pip install setproctitle==1.3.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/46129864](https://gitlab.com/riseproject/python/wheel_builder/-/packages/46129864) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/py-setproctitle/patches/version-1.3.6](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/py-setproctitle/patches/version-1.3.6) +
+ +
+1.3.5 + +```bash +pip install setproctitle==1.3.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38317052](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38317052) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/py-setproctitle/patches/version-1.3.5](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/py-setproctitle/patches/version-1.3.5) +
diff --git a/docs/packages/soundfile.md b/docs/packages/soundfile.md new file mode 100644 index 0000000..a69dabe --- /dev/null +++ b/docs/packages/soundfile.md @@ -0,0 +1,35 @@ +--- +title: soundfile +layout: default +parent: Supported Packages +--- + + + +# soundfile + +- **Source Code:** [https://github.com/bastibe/python-soundfile](https://github.com/bastibe/python-soundfile) +- **Supported versions:** + +
+0.13.1 (latest) + +```bash +pip install soundfile --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/46546431](https://gitlab.com/riseproject/python/wheel_builder/-/packages/46546431) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/python-soundfile/patches/0.13.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/python-soundfile/patches/0.13.1) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/python-soundfile/-/jobs/11548915768/artifacts/file/gpl-sources-python-soundfile.tar.gz) to sources of bundled GPL libraries + + +{: .warning } +> soundfile depends on a variety of BSD-3-Clause and (L)GPL libraries to +> build. See the above link for GPL sources, and the +> licensing/license_notes.md file included in the wheel for specific info +> about each package. + +
diff --git a/docs/packages/swig.md b/docs/packages/swig.md new file mode 100644 index 0000000..125016f --- /dev/null +++ b/docs/packages/swig.md @@ -0,0 +1,32 @@ +--- +title: swig +layout: default +parent: Supported Packages +--- + + + +# swig + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/swig/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/nightlark/swig-pypi](https://github.com/nightlark/swig-pypi) +- **Supported versions:** + +
+4.3.1 (latest) + +```bash +pip install swig --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0/GPL v3/`Others `_ +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/41412457](https://gitlab.com/riseproject/python/wheel_builder/-/packages/41412457) +
diff --git a/docs/packages/tiktoken.md b/docs/packages/tiktoken.md new file mode 100644 index 0000000..b38f3d6 --- /dev/null +++ b/docs/packages/tiktoken.md @@ -0,0 +1,78 @@ +--- +title: tiktoken +layout: default +parent: Supported Packages +--- + + + +# tiktoken + +- **Source Code:** [https://github.com/openai/tiktoken](https://github.com/openai/tiktoken) +- **Supported versions:** + +
+0.13.0 (latest) + +```bash +pip install tiktoken --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/60321790](https://gitlab.com/riseproject/python/wheel_builder/-/packages/60321790) +
+ +
+0.12.0 + +```bash +pip install tiktoken==0.12.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51637383](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51637383) +
+ +
+0.11.0 + +```bash +pip install tiktoken==0.11.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51923237](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51923237) +
+ +
+0.9.0 + +```bash +pip install tiktoken==0.9.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40567596](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40567596) +
+ +
+0.8.0 + +```bash +pip install tiktoken==0.8.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/35212118](https://gitlab.com/riseproject/python/wheel_builder/-/packages/35212118) +
+ +
+0.7.0 + +```bash +pip install tiktoken==0.7.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/35211858](https://gitlab.com/riseproject/python/wheel_builder/-/packages/35211858) +
diff --git a/docs/packages/tlparse.md b/docs/packages/tlparse.md new file mode 100644 index 0000000..fbb9540 --- /dev/null +++ b/docs/packages/tlparse.md @@ -0,0 +1,104 @@ +--- +title: tlparse +layout: default +parent: Supported Packages +--- + + + +# tlparse + +- **Source Code:** [https://github.com/ezyang/tlparse](https://github.com/ezyang/tlparse) +- **Supported versions:** + +
+0.4.3 (latest) + +```bash +pip install tlparse --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59438949](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59438949) +
+ +
+0.4.2 + +```bash +pip install tlparse==0.4.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59439930](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59439930) +
+ +
+0.4.1 + +```bash +pip install tlparse==0.4.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59438890](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59438890) +
+ +
+0.4.0 + +```bash +pip install tlparse==0.4.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59438755](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59438755) +
+ +
+0.3.30 + +```bash +pip install tlparse==0.3.30 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/44665440](https://gitlab.com/riseproject/python/wheel_builder/-/packages/44665440) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/tlparse/patches/v0.3.30](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/tlparse/patches/v0.3.30) +
+ +
+0.3.25 + +```bash +pip install tlparse==0.3.25 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28801855](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28801855) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/tlparse/patches/v0.3.25](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/tlparse/patches/v0.3.25) +
+ +
+0.3.7 + +```bash +pip install tlparse==0.3.7 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28801531](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28801531) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/tlparse/patches/v0.3.7](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/tlparse/patches/v0.3.7) +
+ +
+0.3.5 + +```bash +pip install tlparse==0.3.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/28801212](https://gitlab.com/riseproject/python/wheel_builder/-/packages/28801212) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/tlparse/patches/v0.3.5](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/tlparse/patches/v0.3.5) +
diff --git a/docs/packages/tokenizers.md b/docs/packages/tokenizers.md new file mode 100644 index 0000000..d0422d2 --- /dev/null +++ b/docs/packages/tokenizers.md @@ -0,0 +1,95 @@ +--- +title: tokenizers +layout: default +parent: Supported Packages +--- + + + +# tokenizers + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/tokenizers/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/huggingface/tokenizers](https://github.com/huggingface/tokenizers) +- **Supported versions:** + +
+0.22.2 (latest) + +```bash +pip install tokenizers --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51636794](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51636794) +
+ +
+0.22.1 + +```bash +pip install tokenizers==0.22.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/48310436](https://gitlab.com/riseproject/python/wheel_builder/-/packages/48310436) +
+ +
+0.22.0 + +```bash +pip install tokenizers==0.22.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/48310477](https://gitlab.com/riseproject/python/wheel_builder/-/packages/48310477) +
+ +
+0.21.1 + +```bash +pip install tokenizers==0.21.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36897711](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36897711) +
+ +
+0.21.0 + +```bash +pip install tokenizers==0.21.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36897719](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36897719) +
+ +
+0.20.3 + +```bash +pip install tokenizers==0.20.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36897733](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36897733) +
+ + +{: .note } +> License file included in the wheel. + + +{: .warning } +> test\_tutorial\_train\_from\_iterators.py disabled due to missing dependency. diff --git a/docs/packages/tornado.md b/docs/packages/tornado.md new file mode 100644 index 0000000..54956c6 --- /dev/null +++ b/docs/packages/tornado.md @@ -0,0 +1,162 @@ +--- +title: tornado +layout: default +parent: Supported Packages +--- + + + +# tornado + +- **Source Code:** [https://github.com/tornadoweb/tornado](https://github.com/tornadoweb/tornado) +- **Supported versions:** + +
+6.5.7 (latest) + +```bash +pip install tornado --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/61810136](https://gitlab.com/riseproject/python/wheel_builder/-/packages/61810136) + +{: .warning } +> Currently only run tornado.test.web\_test. + +
+ +
+6.5.6 + +```bash +pip install tornado==6.5.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/60958847](https://gitlab.com/riseproject/python/wheel_builder/-/packages/60958847) + +{: .warning } +> Currently only run tornado.test.web\_test. + +
+ +
+6.5.5 + +```bash +pip install tornado==6.5.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/56489380](https://gitlab.com/riseproject/python/wheel_builder/-/packages/56489380) + +{: .warning } +> Currently only run tornado.test.web\_test. + +
+ +
+6.5.4 + +```bash +pip install tornado==6.5.4 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51678726](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51678726) + +{: .warning } +> Currently only run tornado.test.web\_test. + +
+ +
+6.5.3 + +```bash +pip install tornado==6.5.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/51678721](https://gitlab.com/riseproject/python/wheel_builder/-/packages/51678721) + +{: .warning } +> Currently only run tornado.test.web\_test. + +
+ +
+6.5.2 + +```bash +pip install tornado==6.5.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49659269](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49659269) + +{: .warning } +> Currently only run tornado.test.web\_test. + +
+ +
+6.5.1 + +```bash +pip install tornado==6.5.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49659259](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49659259) + +{: .warning } +> Currently only run tornado.test.web\_test. + +
+ +
+6.5 + +```bash +pip install tornado==6.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39432109](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39432109) + +{: .warning } +> Currently only run tornado.test.web\_test. + +
+ +
+6.4.2 + +```bash +pip install tornado==6.4.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/33384466](https://gitlab.com/riseproject/python/wheel_builder/-/packages/33384466) + +{: .warning } +> Currently only run tornado.test.web\_test. **CVE-2025-47287** + +
+ +
+6.4.1 + +```bash +pip install tornado==6.4.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/32291874](https://gitlab.com/riseproject/python/wheel_builder/-/packages/32291874) + +{: .warning } +> Currently only run tornado.test.web\_test. **CVE-2024-52804**, **CVE-2025-47287** + +
diff --git a/docs/packages/ujson.md b/docs/packages/ujson.md new file mode 100644 index 0000000..5929705 --- /dev/null +++ b/docs/packages/ujson.md @@ -0,0 +1,67 @@ +--- +title: ujson +layout: default +parent: Supported Packages +--- + + + +# ujson + +- **Source Code:** [https://github.com/ultrajson/ultrajson](https://github.com/ultrajson/ultrajson) +- **Supported versions:** + +
+5.13.0 (latest) + +```bash +pip install ujson --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause + TCL/TK License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/62124204](https://gitlab.com/riseproject/python/wheel_builder/-/packages/62124204) +
+ +
+5.12.1 + +```bash +pip install ujson==5.12.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause + TCL/TK License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59665115](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59665115) +
+ +
+5.12.0 + +```bash +pip install ujson==5.12.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause + TCL/TK License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/56489988](https://gitlab.com/riseproject/python/wheel_builder/-/packages/56489988) +
+ +
+5.11.0 + +```bash +pip install ujson==5.11.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause + TCL/TK License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49537265](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49537265) +
+ +
+5.10.0 + +```bash +pip install ujson==5.10.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause + TCL/TK License +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38116978](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38116978) +
diff --git a/docs/packages/uv.md b/docs/packages/uv.md new file mode 100644 index 0000000..678706f --- /dev/null +++ b/docs/packages/uv.md @@ -0,0 +1,134 @@ +--- +title: uv +layout: default +parent: Supported Packages +--- + + + +# uv + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/uv/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/astral-sh/uv](https://github.com/astral-sh/uv) +- **Supported versions:** + +
+0.7.13 (latest) + +```bash +pip install uv --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/41347785](https://gitlab.com/riseproject/python/wheel_builder/-/packages/41347785) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/uv/patches/0.7.13](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/uv/patches/0.7.13) +
+ +
+0.6.6 + +```bash +pip install uv==0.6.6 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36826577](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36826577) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/uv/patches/0.6.6](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/uv/patches/0.6.6) +
+ +
+0.6.3 + +```bash +pip install uv==0.6.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36799410](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36799410) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/uv/patches/0.6.3](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/uv/patches/0.6.3) +
+ + +{: .warning } +> We disable a fairly large assortment of tests due either to intermittent +> issues (e.g. network timeouts) or to variability in the snapshot results +> from cargo nextest. As many of these tests involve compiling, installing, +> or otherwise interacting with Python binaries that are not compatible with +> riscv64, we have elected to disable them all for now: +> +> - python_find +> - python_install +> - python_list +> - tool_install +> - cache_prune::prune_unzipped +> - ecosystem::saleor +> - ecosystem::transformers +> - ecosystem::warehouse +> - edit::add_index +> - edit::add_full_url_in_keyring +> - edit::add_git_private_source +> - edit::add_git_private_raw +> - edit::add_git_raw +> - edit::add_non_normalized_source +> - edit::add_git +> - edit::add_unnamed +> - export::requirements_txt_ssh_git_username +> - help::help_subsubcommand +> - lock::lock_git_plus_prefix +> - lock::lock_keyring_credentials +> - lock::lock_keyring_explicit_always +> - lock::lock_mismatched_sources +> - lock::lock_mismatched_versions +> - lock::lock_pytorch_local_preference +> - lock::lock_redact_git_pep508 +> - lock::lock_redact_git_pep508_non_project +> - lock::lock_redact_git_sources +> - lock::lock_sdist_git_pep508 +> - lock::lock_shared_build_dependency +> - lock::lock_sdist_git +> - lock::lock_sdist_git_short_rev +> - pip_compile::compile_numpy_py38 +> - pip_compile::emit_index_annotation_multiple_indexes +> - pip_install::deptry_gitignore +> - pip_install::install_editable_pep_508_cli +> - pip_install::install_editable_pep_508_requirements_txt +> - pip_install::install_git_private_https_pat_not_authorized +> - pip_install::install_package_basic_auth_from_keyring +> - pip_install::install_package_basic_auth_from_keyring_wrong_password +> - pip_install::install_package_basic_auth_from_keyring_wrong_username +> - pip_install::install_pinned_polars_invalid_metadata +> - pip_install::verify_hashes_editable +> - pip_sync::compile +> - pip_sync::find_links +> - pip_sync::install_numpy_py38 +> - pip_sync::install_symlink_no_cache +> - pip_tree::multiple_packages_shared_descendant +> - pip_tree::no_dedupe +> - pip_tree::no_dedupe_and_invert +> - pip_tree::with_editable +> - publish::check_keyring_behaviours +> - python_pin::python_pin_resolve +> - run::run_from_directory +> - run::run_repeated +> - run::run_without_overlay +> - sync::sync_git_path_dependency +> - sync::sync_git_repeated_member_backwards_path +> - sync::sync_git_repeated_member_dynamic_metadata +> - sync::sync_required_environment_hint +> - sync::sync_reset_state +> - sync::sync_stale_egg_info +> - test::test_locate_system_config_xdg_unix_permissions +> - tool_list::tool_list_bad_environment +> - tool_list::tool_list_show_with +> - tool_run::tool_run_cache +> - tool_run::tool_run_from_install +> - tool_run::tool_run_warn_executable_not_in_from +> - tool_uninstall::tool_uninstall_multiple_names diff --git a/docs/packages/uvloop.md b/docs/packages/uvloop.md new file mode 100644 index 0000000..a37025e --- /dev/null +++ b/docs/packages/uvloop.md @@ -0,0 +1,60 @@ +--- +title: uvloop +layout: default +parent: Supported Packages +--- + + + +# uvloop + +- **Source Code:** [https://github.com/MagicStack/uvloop](https://github.com/MagicStack/uvloop) +- **Supported versions:** + +
+0.22.1 (latest) + +```bash +pip install uvloop --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/59515929](https://gitlab.com/riseproject/python/wheel_builder/-/packages/59515929) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/uvloop/patches/v0.22.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/uvloop/patches/v0.22.1) +
+ +
+0.21.0 + +```bash +pip install uvloop==0.21.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT or Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/41118475](https://gitlab.com/riseproject/python/wheel_builder/-/packages/41118475) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/uvloop/patches/v0.21.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/uvloop/patches/v0.21.0) +
+ + +{: .warning } +> We disable the following tests due to networking issues on the builder: +> +> - test_dns: +> +> - test_getaddrinfo_{1,2,5,6,11} +> +> - test_sockets: +> +> - test_socket_cancel_sock_sendall +> +> - test_tcp: +> +> - Test_UV_TCPSSL +> +> We also disable the following tests as they fail on local tests of the +> wheels. The getaddrinfo behavior seems to vary depending on the host +> environment used, so we skip them to avoid discrepancies: +> +> - test_dns: +> +> - test_getaddrinfo_{8,9} diff --git a/docs/packages/video-reader-rs.md b/docs/packages/video-reader-rs.md new file mode 100644 index 0000000..589429f --- /dev/null +++ b/docs/packages/video-reader-rs.md @@ -0,0 +1,47 @@ +--- +title: video-reader-rs +layout: default +parent: Supported Packages +--- + + + +# video-reader-rs + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/video-reader-rs/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/gcanat/video_reader-rs](https://github.com/gcanat/video_reader-rs) +- **Supported versions:** + +
+0.2.10 (latest) + +```bash +pip install video-reader-rs --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT OR LGPL-2.1 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/47526029](https://gitlab.com/riseproject/python/wheel_builder/-/packages/47526029) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/video_reader-rs/patches/v0.2.10](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/video_reader-rs/patches/v0.2.10) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/video_reader-rs/-/jobs/11740514426/artifacts/file/gpl-sources-video_reader-rs.tar.gz) to sources of bundled GPL libraries + + +{: .warning } +> video_reader-rs depends on FFmpeg, which can be built with various license +> configurations, but is LGPL-licensed in the format used for this build. +> The built wheel includes FFmpeg shared objects along with some for bzip2, +> liblzma, libXau, and libxcb. This is slightly different from the upstream +> build, which relies on a bundled version of FFmpeg that is not publicly +> available. For dependencies other than FFmpeg, see license_notes.md for +> copyright notices and links to the sources. + +
diff --git a/docs/packages/watchfiles.md b/docs/packages/watchfiles.md new file mode 100644 index 0000000..b19e7de --- /dev/null +++ b/docs/packages/watchfiles.md @@ -0,0 +1,62 @@ +--- +title: watchfiles +layout: default +parent: Supported Packages +--- + + + +# watchfiles + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/watchfiles/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/samuelcolvin/watchfiles](https://github.com/samuelcolvin/watchfiles) +- **Supported versions:** + +
+1.1.1 (latest) + +```bash +pip install watchfiles --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49595698](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49595698) +
+ +
+1.1.0 + +```bash +pip install watchfiles==1.1.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49595741](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49595741) +
+ +
+1.0.5 + +```bash +pip install watchfiles==1.0.5 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39276536](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39276536) +
+ + +{: .warning } +> Deselect hanging test: tests/test_rust_notify.py::test_ignore_permission_denied +> +> This test hangs because it waits for a permission denied event, but our +> ci script is running as the root user on GitLab runner, so we cannot +> trigger this permission denied event. diff --git a/docs/packages/websockets.md b/docs/packages/websockets.md new file mode 100644 index 0000000..08f6a6d --- /dev/null +++ b/docs/packages/websockets.md @@ -0,0 +1,71 @@ +--- +title: websockets +layout: default +parent: Supported Packages +--- + + + +# websockets + +- **Source Code:** [https://github.com/python-websockets/websockets](https://github.com/python-websockets/websockets) +- **Supported versions:** + +
+16.0 (latest) + +```bash +pip install websockets --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/54144962](https://gitlab.com/riseproject/python/wheel_builder/-/packages/54144962) + +{: .note } +> Tests are disabled on this version, as suggested by maintainer, since tests are not designed to be run on packaging. See [this discussion](https://github.com/python-websockets/websockets/issues/1696). + +
+ +
+15.0.1 + +```bash +pip install websockets==15.0.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38267803](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38267803) +
+ +
+15.0 + +```bash +pip install websockets==15.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38254474](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38254474) +
+ +
+14.2 + +```bash +pip install websockets==14.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38250503](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38250503) +
+ +
+14.1 + +```bash +pip install websockets==14.1 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-3-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38229598](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38229598) +
diff --git a/docs/packages/wrapt.md b/docs/packages/wrapt.md new file mode 100644 index 0000000..d28abed --- /dev/null +++ b/docs/packages/wrapt.md @@ -0,0 +1,43 @@ +--- +title: wrapt +layout: default +parent: Supported Packages +--- + + + +# wrapt + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/wrapt/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/GrahamDumpleton/wrapt](https://github.com/GrahamDumpleton/wrapt) +- **Supported versions:** + +
+1.17.3 (latest) + +```bash +pip install wrapt --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/46001808](https://gitlab.com/riseproject/python/wheel_builder/-/packages/46001808) +
+ +
+1.17.2 + +```bash +pip install wrapt==1.17.2 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD-2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/38694755](https://gitlab.com/riseproject/python/wheel_builder/-/packages/38694755) +
diff --git a/docs/packages/xxhash.md b/docs/packages/xxhash.md new file mode 100644 index 0000000..8d3b04a --- /dev/null +++ b/docs/packages/xxhash.md @@ -0,0 +1,43 @@ +--- +title: xxhash +layout: default +parent: Supported Packages +--- + + + +# xxhash + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/xxhash/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/ifduyue/python-xxhash](https://github.com/ifduyue/python-xxhash) +- **Supported versions:** + +
+3.6.0 (latest) + +```bash +pip install xxhash --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49534046](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49534046) +
+ +
+3.5.0 + +```bash +pip install xxhash==3.5.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** BSD 2-Clause +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/35211526](https://gitlab.com/riseproject/python/wheel_builder/-/packages/35211526) +
diff --git a/docs/packages/yarl.md b/docs/packages/yarl.md new file mode 100644 index 0000000..56b3b94 --- /dev/null +++ b/docs/packages/yarl.md @@ -0,0 +1,44 @@ +--- +title: yarl +layout: default +parent: Supported Packages +--- + + + +# yarl + +{: .warning } +> This package is deprecated. PyPI now publishes newer versions of +> this package for riscv64, and we will no longer maintain this +> package. Please use the version from [PyPI](https://pypi.org/project/yarl/) instead. +> +> If you need a specific version between the latest available here +> and the first available on PyPI, please open an +> [Issue](https://gitlab.com/riseproject/python/wheel_builder/-/issues). + +- **Source Code:** [https://github.com/aio-libs/yarl/](https://github.com/aio-libs/yarl/) +- **Supported versions:** + +
+1.20.0 (latest) + +```bash +pip install yarl --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/40333039](https://gitlab.com/riseproject/python/wheel_builder/-/packages/40333039) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/yarl/patches/v1.20.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/yarl/patches/v1.20.0) +
+ +
+1.18.3 + +```bash +pip install yarl==1.18.3 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** Apache 2.0 +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/36488390](https://gitlab.com/riseproject/python/wheel_builder/-/packages/36488390) +
diff --git a/docs/packages/z3-solver.md b/docs/packages/z3-solver.md new file mode 100644 index 0000000..b4e816a --- /dev/null +++ b/docs/packages/z3-solver.md @@ -0,0 +1,108 @@ +--- +title: z3-solver +layout: default +parent: Supported Packages +--- + + + +# z3-solver + +- **Source Code:** [https://github.com/Z3Prover/z3](https://github.com/Z3Prover/z3) +- **Supported versions:** + +
+4.16.0.0 (latest) + +```bash +pip install z3-solver --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/62336121](https://gitlab.com/riseproject/python/wheel_builder/-/packages/62336121) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.16.0](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.16.0) +
+ +
+4.15.8.0 + +```bash +pip install z3-solver==4.15.8.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/62336112](https://gitlab.com/riseproject/python/wheel_builder/-/packages/62336112) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.15.8](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.15.8) +
+ +
+4.15.4.0 + +```bash +pip install z3-solver==4.15.4.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49095883](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49095883) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.15.4](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.15.4) +
+ +
+4.15.1.0 + +```bash +pip install z3-solver==4.15.1.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/49093850](https://gitlab.com/riseproject/python/wheel_builder/-/packages/49093850) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.15.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.15.1) +
+ +
+4.14.1.0 + +```bash +pip install z3-solver==4.14.1.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37267169](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37267169) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.14.1](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.14.1) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/z3/-/jobs/9623975876/artifacts/file/gpl_sources.tar) to sources of bundled GPL libraries (libatomic) + +
+ +
+4.12.6.0 + +```bash +pip install z3-solver==4.12.6.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/39462249](https://gitlab.com/riseproject/python/wheel_builder/-/packages/39462249) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.12.6](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.12.6) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/z3/-/jobs/10105649884/artifacts/raw/gpl-sources.tar) to sources of bundled GPL libraries (libatomic) + +
+ +
+4.12.2.0 + +```bash +pip install z3-solver==4.12.2.0 --index-url https://gitlab.com/api/v4/projects/56254198/packages/pypi/simple +``` + +- **License:** MIT +- **Download files:** [https://gitlab.com/riseproject/python/wheel_builder/-/packages/37266724](https://gitlab.com/riseproject/python/wheel_builder/-/packages/37266724) +- **Patch applied for this version:** [https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.12.2](https://gitlab.com/riseproject/python/wheel_builder/-/tree/main/wheel_builder/z3/patches/z3-4.12.2) + +{: .note } +> [Link](https://gitlab.com/riseproject/python/z3/-/jobs/9623979544/artifacts/file/gpl_sources.tar) to sources of bundled GPL libraries (libatomic) + +
diff --git a/docs/requirements-dev.txt b/docs/requirements-dev.txt new file mode 100644 index 0000000..7e66a17 --- /dev/null +++ b/docs/requirements-dev.txt @@ -0,0 +1 @@ +black diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 0000000..4d24ef5 --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1,7 @@ +beautifulsoup4 +packaging +pyyaml +requests +sphinx-rtd-theme +sphinx-copybutton +sphinx-inline-tabs