diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..a70b302 --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,113 @@ +# SPDX-FileCopyrightText: 2026 The RISE Project +# SPDX-License-Identifier: MIT + +name: Build and deploy documentation + +on: + push: + branches: [main] + paths: + - "docs/**" + pull_request: + types: [opened, synchronize, reopened, closed] + workflow_dispatch: + +concurrency: + group: docs-${{ github.ref }} + +jobs: + preview: + if: github.event_name == 'pull_request' + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + if: github.event.action != 'closed' + with: + python-version: '3' + + - name: Install package doc generator dependencies + if: github.event.action != 'closed' + run: pip install -r docs/requirements.txt + + - name: Generate package pages from YAML + if: github.event.action != 'closed' + run: python docs/packages/generate_packages_doc.py + + - name: Compute preview baseurl + if: github.event.action != 'closed' + id: preview_baseurl + run: | + base=$(python3 -c "import yaml; print(yaml.safe_load(open('docs/_config.yml'))['baseurl'])") + echo "value=${base}/pr-preview/pr-${{ github.event.number }}" >> "$GITHUB_OUTPUT" + + - uses: ruby/setup-ruby@v1 + if: github.event.action != 'closed' + with: + ruby-version: '3.3' + + # actions/jekyll-build-pages has no way to override _config.yml's + # hardcoded baseurl, but a preview is served one path segment deeper + # (.../pr-preview/pr-/) than the production site, so it needs its + # own baseurl or every internal link/asset would point at production. + - name: Build with Jekyll + if: github.event.action != 'closed' + run: | + # jekyll-remote-theme only fetches just-the-docs' layouts/assets; + # its own gem dependencies (jekyll-seo-tag, jekyll-include-cache, + # rake) still have to be installed separately. + gem install jekyll jekyll-remote-theme jekyll-seo-tag jekyll-include-cache rake --no-document + jekyll build --source docs --destination _site \ + --baseurl "${{ steps.preview_baseurl.outputs.value }}" + + # Auto-detects deploy vs. removal from the pull_request event action, + # so this same step both publishes updates and tears down the preview + # when the PR is closed. + # + # wait-for-pages-deployment is deliberately left at its default + # (false): on classic "deploy from a branch" Pages, its lookup against + # the legacy Pages Builds API doesn't reliably find an exact-commit + # build within its hardcoded 180s timeout, and that timeout is a hard, + # non-configurable `exit 1` that fails the whole step/PR check even + # when the preview deployed and is serving correctly. A link that's + # occasionally not live for a few seconds is a smaller problem than a + # misleading red X on an otherwise-working PR. + - name: Deploy or remove PR preview + uses: rossjrw/pr-preview-action@v1 + with: + source-dir: ./_site + + deploy: + if: github.event_name == 'push' && github.ref == 'refs/heads/main' + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version: '3' + + - name: Install package doc generator dependencies + run: pip install -r docs/requirements.txt + + - name: Generate package pages from YAML + run: python docs/packages/generate_packages_doc.py + + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./docs + destination: ./_site + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v4 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./_site + keep_files: true diff --git a/ci_scripts/check_versions.py b/ci_scripts/check_versions.py index 2079766..f67cf8c 100755 --- a/ci_scripts/check_versions.py +++ b/ci_scripts/check_versions.py @@ -166,7 +166,7 @@ def create_deprecation_pr(package: str, reason: str) -> Optional[str]: git_run("fetch", "origin") git_run("switch", "main") - yaml_file = Path(f"docs/source/packages/{package}.yaml") + yaml_file = Path(f"docs/packages/{package}.yaml") if not yaml_file.exists(): print(f" [!] YAML file for {package} does not exist") return None diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000..afd0b5d --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1 @@ +packages/*.md diff --git a/docs/infrastructure.md b/docs/infrastructure.md index f9ac713..553e0a0 100644 --- a/docs/infrastructure.md +++ b/docs/infrastructure.md @@ -66,3 +66,25 @@ regenerated by a project administrator/owner. |-------|-------|------|--------|----------|--------| | `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 (April 19th, 2027) | | `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) | + +## GitHub Pages Configuration + +The `.github/workflows/docs.yml` workflow handles building and deploying +documentation, including providing previews of the docs on a per-PR basis. For +this to work correctly, the following settings need to be configured under +`Settings -> Pages -> Build and deployment` in the repository: + +1. `Source` should be set to `Deploy from a branch` +2. `Branch` should be set to `gh-pages` `/(root)` + +When this is configured, any changes touching the `docs` folder will trigger a +docs build, where upon completion the `rossjrw/pr-preview-action` will +automatically comment on the PR with a link looking like: + +``` +https://riseproject-dev.github.io/python-wheels/pr-preview/pr-171/ +``` + +Note that the `gh-pages` branch should be automatically created by the +workflows, but if not it must be created manually with an empty `.nojekyll` file +in the project root to avoid long rebuild times. diff --git a/docs/packages/aiohttp.md b/docs/packages/aiohttp.md deleted file mode 100644 index 0253675..0000000 --- a/docs/packages/aiohttp.md +++ /dev/null @@ -1,59 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/aiohttp.yaml b/docs/packages/aiohttp.yaml new file mode 100644 index 0000000..66ad184 --- /dev/null +++ b/docs/packages/aiohttp.yaml @@ -0,0 +1,21 @@ +deprecated: +package-name: aiohttp +source-code: https://github.com/aio-libs/aiohttp +license: Apache-2.0 +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 +versions: + - version: 3.11.18 + patched: + - version: 3.12.14 + patched: diff --git a/docs/packages/argon2-cffi-bindings.md b/docs/packages/argon2-cffi-bindings.md deleted file mode 100644 index e00e696..0000000 --- a/docs/packages/argon2-cffi-bindings.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/argon2-cffi-bindings.yaml b/docs/packages/argon2-cffi-bindings.yaml new file mode 100644 index 0000000..1ff178f --- /dev/null +++ b/docs/packages/argon2-cffi-bindings.yaml @@ -0,0 +1,6 @@ +package-name: argon2-cffi-bindings +source-code: https://github.com/hynek/argon2-cffi-bindings +license: MIT/CC0(libargon2) +versions: + - version: 21.2.0 + - version: 25.1.0 diff --git a/docs/packages/blake3.md b/docs/packages/blake3.md deleted file mode 100644 index bb4f23c..0000000 --- a/docs/packages/blake3.md +++ /dev/null @@ -1,65 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/blake3.yaml b/docs/packages/blake3.yaml new file mode 100644 index 0000000..707a1a1 --- /dev/null +++ b/docs/packages/blake3.yaml @@ -0,0 +1,9 @@ +deprecated: +package-name: blake3 +source-code: https://github.com/oconnor663/blake3-py +license: CC0-1.0 OR Apache-2.0 +versions: + - version: 1.0.5 + - version: 1.0.6 + - version: 1.0.7 + - version: 1.0.8 diff --git a/docs/packages/cffi.md b/docs/packages/cffi.md deleted file mode 100644 index c7e16d4..0000000 --- a/docs/packages/cffi.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/cffi.yaml b/docs/packages/cffi.yaml new file mode 100644 index 0000000..528764c --- /dev/null +++ b/docs/packages/cffi.yaml @@ -0,0 +1,9 @@ +package-name: cffi +source-code: https://github.com/python-cffi/cffi +license: MIT +comment: We append the files in the libffi LICENSE to the LICENSE file in the wheel +versions: + - version: 1.17.0 + - version: 1.17.1 + - version: 2.0.0 + patched: diff --git a/docs/packages/charset-normalizer.md b/docs/packages/charset-normalizer.md deleted file mode 100644 index 6dd9aee..0000000 --- a/docs/packages/charset-normalizer.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/charset-normalizer.yaml b/docs/packages/charset-normalizer.yaml new file mode 100644 index 0000000..7958e57 --- /dev/null +++ b/docs/packages/charset-normalizer.yaml @@ -0,0 +1,7 @@ +deprecated: +package-name: charset-normalizer +source-code: https://github.com/jawah/charset_normalizer +license: MIT +versions: + - version: 3.4.1 + - version: 3.4.2 diff --git a/docs/packages/cmake.md b/docs/packages/cmake.md deleted file mode 100644 index 68ffc39..0000000 --- a/docs/packages/cmake.md +++ /dev/null @@ -1,205 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/cmake.yaml b/docs/packages/cmake.yaml new file mode 100644 index 0000000..5110d0a --- /dev/null +++ b/docs/packages/cmake.yaml @@ -0,0 +1,34 @@ +deprecated: +package-name: cmake +source-code: https://github.com/scikit-build/cmake-python-distributions +license: BSD 3-Clause +comment: Provides `cmake `_ +warning: | + We disable Module.ExternalData which is flaky and appears to have a race + condition under qemu-user. +versions: + - version: 3.27.7 + - version: 3.29.2 + - version: 3.29.3 + - version: 3.29.5 + - version: 3.29.5.1 + - version: 3.29.6 + patched: + - version: 3.30.0 + patched: + - version: 3.30.1 + patched: + - version: 3.30.2 + patched: + - version: 3.30.5 + patched: + - version: 3.31.2 + patched: + - version: 3.31.4 + patched: + - version: 3.31.6 + patched: + - version: 4.0.0 + patched: + - version: 4.0.3 + patched: diff --git a/docs/packages/contourpy.md b/docs/packages/contourpy.md deleted file mode 100644 index 77c7e9b..0000000 --- a/docs/packages/contourpy.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/contourpy.yaml b/docs/packages/contourpy.yaml new file mode 100644 index 0000000..54ee623 --- /dev/null +++ b/docs/packages/contourpy.yaml @@ -0,0 +1,7 @@ +package-name: contourpy +source-code: https://github.com/contourpy/contourpy +license: BSD-3-Clause +versions: + - version: 1.3.1 + - version: 1.3.2 + - version: 1.3.3 diff --git a/docs/packages/cryptography.md b/docs/packages/cryptography.md deleted file mode 100644 index d9dacd5..0000000 --- a/docs/packages/cryptography.md +++ /dev/null @@ -1,126 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/cryptography.yaml b/docs/packages/cryptography.yaml new file mode 100644 index 0000000..25b7d46 --- /dev/null +++ b/docs/packages/cryptography.yaml @@ -0,0 +1,15 @@ +package-name: cryptography +source-code: https://github.com/pyca/cryptography +license: BSD-3-Clause or Apache 2.0 +versions: + - version: 39.0.2 + - version: 43.0.1 + comment: Built using latest OpenSSL available in Ubuntu 22.04 (3.0.2-0ubuntu1.18) and so not affected by CVE-2024-12797 + - version: 45.0.4 + - version: 46.0.5 + - version: 46.0.6 + - version: 46.0.7 + - version: 47.0.0 + - version: 48.0.0 + - version: 48.0.1 + - version: 49.0.0 diff --git a/docs/packages/fastar.md b/docs/packages/fastar.md deleted file mode 100644 index 27828a0..0000000 --- a/docs/packages/fastar.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/fastar.yaml b/docs/packages/fastar.yaml new file mode 100644 index 0000000..6f31327 --- /dev/null +++ b/docs/packages/fastar.yaml @@ -0,0 +1,13 @@ +deprecated: +package-name: fastar +source-code: https://github.com/DoctorJohn/fastar +license: MIT +comment: | + 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 +versions: + - version: 0.7.0 + - version: 0.8.0 diff --git a/docs/packages/fastrlock.md b/docs/packages/fastrlock.md deleted file mode 100644 index 14c72a0..0000000 --- a/docs/packages/fastrlock.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -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://pypi.riseproject.dev/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/fastrlock.yaml b/docs/packages/fastrlock.yaml new file mode 100644 index 0000000..a4887ec --- /dev/null +++ b/docs/packages/fastrlock.yaml @@ -0,0 +1,5 @@ +package-name: fastrlock +source-code: https://github.com/scoder/fastrlock +license: MIT style +versions: + - version: 0.8.3 diff --git a/docs/packages/frozenlist.md b/docs/packages/frozenlist.md deleted file mode 100644 index 312900d..0000000 --- a/docs/packages/frozenlist.md +++ /dev/null @@ -1,82 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/frozenlist.yaml b/docs/packages/frozenlist.yaml new file mode 100644 index 0000000..b064395 --- /dev/null +++ b/docs/packages/frozenlist.yaml @@ -0,0 +1,14 @@ +package-name: frozenlist +source-code: https://github.com/aio-libs/frozenlist.git +license: Apache 2.0 +versions: + - version: 1.5.0 + - version: 1.6.0 + - version: 1.6.1 + patched: + - version: 1.6.2 + patched: + - version: 1.7.0 + patched: + - version: 1.8.0 + patched: diff --git a/docs/packages/generate_packages_doc.py b/docs/packages/generate_packages_doc.py index 39ee0ec..072dc2d 100644 --- a/docs/packages/generate_packages_doc.py +++ b/docs/packages/generate_packages_doc.py @@ -17,14 +17,7 @@ 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", - ) -) +PYPI_INDEX_URL = "https://pypi.riseproject.dev/simple/" # Match RST inline external refs: `Label `_ or `Label `__ RST_LINK_RE = re.compile(r"`([^`<]+?)\s*<([^>]+)>`_+") @@ -168,11 +161,10 @@ def generate_md_page(yaml_file, output_md, package_list): lines.append("") install_command = ( - f"pip install {package_name} " - f"--index-url {GITLAB_REGISTRY_URL}/pypi/simple" + f"pip install {package_name} --index-url {PYPI_INDEX_URL}" if is_latest else f"pip install {package_name}=={version_number} " - f"--index-url {GITLAB_REGISTRY_URL}/pypi/simple" + f"--index-url {PYPI_INDEX_URL}" ) lines += ["```bash", install_command, "```", ""] @@ -231,12 +223,12 @@ def generate_md_page(yaml_file, output_md, package_list): def process_all_yaml_files(package_list): - yaml_files = sorted(glob.glob(os.path.join(YAML_SRC_DIR, "*.yaml"))) + out_dir = os.path.dirname(os.path.abspath(__file__)) + yaml_files = sorted(glob.glob(os.path.join(out_dir, "*.yaml"))) if not yaml_files: - print(f"No YAML files found in {YAML_SRC_DIR}") + print(f"No YAML files found in {out_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") diff --git a/docs/packages/grpcio.md b/docs/packages/grpcio.md deleted file mode 100644 index 5a35f68..0000000 --- a/docs/packages/grpcio.md +++ /dev/null @@ -1,64 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/grpcio.yaml b/docs/packages/grpcio.yaml new file mode 100644 index 0000000..300b5fe --- /dev/null +++ b/docs/packages/grpcio.yaml @@ -0,0 +1,15 @@ +package-name: grpcio +source-code: https://github.com/grpc/grpc +license: Apache License 2.0 +comment: The sources of libatomic are provided for wheels built with gcc-12 only. Wheels built with gcc-14 do not link against libatomic. +versions: + - version: 1.72.0 + patched: + comment: '`Link `__ to + sources of bundled GPL libraries (libatomic)' + - version: 1.75.1 + patched: + comment: tests.unit._dynamic_stubs_test.DynamicStubTest.test_sunny_day is skipped as it hangs wheel_builder's testing environment. + - version: 1.76.0 + patched: + comment: tests.unit._dynamic_stubs_test.DynamicStubTest.test_sunny_day is skipped as it hangs wheel_builder's testing environment. diff --git a/docs/packages/hf-transfer.md b/docs/packages/hf-transfer.md deleted file mode 100644 index 82776da..0000000 --- a/docs/packages/hf-transfer.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -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://pypi.riseproject.dev/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-transfer.yaml b/docs/packages/hf-transfer.yaml new file mode 100644 index 0000000..e467645 --- /dev/null +++ b/docs/packages/hf-transfer.yaml @@ -0,0 +1,5 @@ +package-name: hf-transfer +source-code: https://github.com/huggingface/hf_transfer.git +license: Apache 2.0 +versions: + - version: 0.1.9 diff --git a/docs/packages/hf-xet.md b/docs/packages/hf-xet.md deleted file mode 100644 index 8c2b265..0000000 --- a/docs/packages/hf-xet.md +++ /dev/null @@ -1,100 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/hf-xet.yaml b/docs/packages/hf-xet.yaml new file mode 100644 index 0000000..29c829c --- /dev/null +++ b/docs/packages/hf-xet.yaml @@ -0,0 +1,12 @@ +package-name: hf-xet +source-code: https://github.com/huggingface/xet-core +license: Apache-2.0 +versions: + - version: 1.1.4 + - version: 1.1.5 + - version: 1.1.6 + - version: 1.1.7 + - version: 1.1.8 + - version: 1.1.9 + - version: 1.1.10 + - version: 1.2.0 diff --git a/docs/packages/httptools.md b/docs/packages/httptools.md deleted file mode 100644 index 7066a05..0000000 --- a/docs/packages/httptools.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/httptools.yaml b/docs/packages/httptools.yaml new file mode 100644 index 0000000..37efd0c --- /dev/null +++ b/docs/packages/httptools.yaml @@ -0,0 +1,8 @@ +package-name: httptools +source-code: https://github.com/MagicStack/httptools +license: MIT +comment: We append the license text of http-parser and llhttp to the LICENSE file in the wheel +versions: + - version: 0.6.4 + - version: 0.7.1 + - version: 0.8.0 diff --git a/docs/packages/index.md b/docs/packages/index.md deleted file mode 100644 index 0e38371..0000000 --- a/docs/packages/index.md +++ /dev/null @@ -1,86 +0,0 @@ ---- -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 deleted file mode 100644 index 0b8e94a..0000000 --- a/docs/packages/jiter.md +++ /dev/null @@ -1,114 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/jiter.yaml b/docs/packages/jiter.yaml new file mode 100644 index 0000000..ab95961 --- /dev/null +++ b/docs/packages/jiter.yaml @@ -0,0 +1,18 @@ +deprecated: +package-name: jiter +source-code: https://github.com/pydantic/jiter +license: MIT +versions: + - version: 0.8.2 + patched: + - version: 0.9.0 + patched: + - version: 0.9.1 + patched: + - version: 0.10.0 + patched: + - version: 0.11.0 + patched: + - version: 0.11.1 + - version: 0.12.0 + - version: 0.13.0 diff --git a/docs/packages/kiwisolver.md b/docs/packages/kiwisolver.md deleted file mode 100644 index 7ee13b7..0000000 --- a/docs/packages/kiwisolver.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/kiwisolver.yaml b/docs/packages/kiwisolver.yaml new file mode 100644 index 0000000..be609c4 --- /dev/null +++ b/docs/packages/kiwisolver.yaml @@ -0,0 +1,8 @@ +deprecated: +package-name: kiwisolver +source-code: https://github.com/nucleic/kiwi +license: BSD-3-Clause +versions: + - version: 1.4.7 + - version: 1.4.8 + - version: 1.4.9 diff --git a/docs/packages/libcst.md b/docs/packages/libcst.md deleted file mode 100644 index c2bec68..0000000 --- a/docs/packages/libcst.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -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://pypi.riseproject.dev/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/libcst.yaml b/docs/packages/libcst.yaml new file mode 100644 index 0000000..dd55de9 --- /dev/null +++ b/docs/packages/libcst.yaml @@ -0,0 +1,5 @@ +package-name: libcst +source-code: https://github.com/Instagram/LibCST +license: MIT / PSF / Apache 2.0 (see more details in `LICENSE file `_) +versions: + - version: 1.8.6 diff --git a/docs/packages/lintrunner.md b/docs/packages/lintrunner.md deleted file mode 100644 index 89b0423..0000000 --- a/docs/packages/lintrunner.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/lintrunner.yaml b/docs/packages/lintrunner.yaml new file mode 100644 index 0000000..fa5aaf3 --- /dev/null +++ b/docs/packages/lintrunner.yaml @@ -0,0 +1,10 @@ +deprecated: +package-name: lintrunner +source-code: https://github.com/suo/lintrunner +license: MIT +warning: Skip linter_nonexistent_command which fails with the wrong error +versions: + - version: 0.12.5 + patched: + - version: 0.12.7 + patched: diff --git a/docs/packages/llguidance.md b/docs/packages/llguidance.md deleted file mode 100644 index 43dc7cd..0000000 --- a/docs/packages/llguidance.md +++ /dev/null @@ -1,142 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/llguidance.yaml b/docs/packages/llguidance.yaml new file mode 100644 index 0000000..b4aee01 --- /dev/null +++ b/docs/packages/llguidance.yaml @@ -0,0 +1,16 @@ +deprecated: +package-name: llguidance +source-code: https://github.com/guidance-ai/llguidance +license: MIT +versions: + - version: 0.7.29 + - version: 0.7.30 + - version: 1.0.0 + - version: 1.0.1 + - version: 1.1.0 + - version: 1.1.1 + - version: 1.1.2 + - version: 1.2.0 + - version: 1.3.0 + - version: 1.4.0 + - version: 1.5.0 diff --git a/docs/packages/lxml.md b/docs/packages/lxml.md deleted file mode 100644 index 46ca0aa..0000000 --- a/docs/packages/lxml.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -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://pypi.riseproject.dev/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/lxml.yaml b/docs/packages/lxml.yaml new file mode 100644 index 0000000..9148d53 --- /dev/null +++ b/docs/packages/lxml.yaml @@ -0,0 +1,6 @@ +deprecated: +package-name: lxml +source-code: https://github.com/lxml/lxml +license: BSD 3-Clause +versions: + - version: 5.3.0 diff --git a/docs/packages/markupsafe.md b/docs/packages/markupsafe.md deleted file mode 100644 index eac8cbe..0000000 --- a/docs/packages/markupsafe.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/markupsafe.yaml b/docs/packages/markupsafe.yaml new file mode 100644 index 0000000..7ea8048 --- /dev/null +++ b/docs/packages/markupsafe.yaml @@ -0,0 +1,8 @@ +deprecated: +package-name: MarkupSafe +source-code: https://github.com/pallets/markupsafe +license: BSD 3-Clause +versions: + - version: 2.1.5 + - version: 3.0.1 + - version: 3.0.2 diff --git a/docs/packages/matplotlib.md b/docs/packages/matplotlib.md deleted file mode 100644 index 09b5619..0000000 --- a/docs/packages/matplotlib.md +++ /dev/null @@ -1,126 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/matplotlib.yaml b/docs/packages/matplotlib.yaml new file mode 100644 index 0000000..81c2df3 --- /dev/null +++ b/docs/packages/matplotlib.yaml @@ -0,0 +1,15 @@ +package-name: matplotlib +source-code: https://github.com/matplotlib/matplotlib +license: Matplotlib license +warning: Tests not currently run +versions: + - version: 3.9.2 + - version: 3.10.0 + - version: 3.10.1 + - version: 3.10.2 + - version: 3.10.3 + - version: 3.10.5 + - version: 3.10.6 + - version: 3.10.7 + - version: 3.10.8 + - version: 3.10.9 diff --git a/docs/packages/maturin.md b/docs/packages/maturin.md deleted file mode 100644 index a808ebd..0000000 --- a/docs/packages/maturin.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/maturin.yaml b/docs/packages/maturin.yaml new file mode 100644 index 0000000..ac35e9a --- /dev/null +++ b/docs/packages/maturin.yaml @@ -0,0 +1,7 @@ +deprecated: +package-name: maturin +source-code: https://github.com/PyO3/maturin +license: MIT or Apache 2.0 +versions: + - version: 1.7.1 + - version: 1.8.1 diff --git a/docs/packages/ml-dtypes.md b/docs/packages/ml-dtypes.md deleted file mode 100644 index b311235..0000000 --- a/docs/packages/ml-dtypes.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/ml-dtypes.yaml b/docs/packages/ml-dtypes.yaml new file mode 100644 index 0000000..c23ee87 --- /dev/null +++ b/docs/packages/ml-dtypes.yaml @@ -0,0 +1,8 @@ +package-name: ml-dtypes +source-code: https://github.com/jax-ml/ml_dtypes +license: Apache-2.0 / MPL-2.0 (eigen) +versions: + - version: 0.5.3 + comment: '`Link `__ to sources of bundled MPL libraries.' + - version: 0.5.4 + comment: '`Link `__ to sources of bundled MPL libraries.' diff --git a/docs/packages/msgpack.md b/docs/packages/msgpack.md deleted file mode 100644 index 00ef66c..0000000 --- a/docs/packages/msgpack.md +++ /dev/null @@ -1,65 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/msgpack.yaml b/docs/packages/msgpack.yaml new file mode 100644 index 0000000..f2f8f53 --- /dev/null +++ b/docs/packages/msgpack.yaml @@ -0,0 +1,9 @@ +deprecated: +package-name: msgpack +source-code: https://github.com/msgpack/msgpack-python +license: Apache 2.0 +versions: + - version: 1.0.8 + - version: 1.1.0 + - version: 1.1.1 + - version: 1.1.2 diff --git a/docs/packages/msgspec.md b/docs/packages/msgspec.md deleted file mode 100644 index 0537b4b..0000000 --- a/docs/packages/msgspec.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/msgspec.yaml b/docs/packages/msgspec.yaml new file mode 100644 index 0000000..346e432 --- /dev/null +++ b/docs/packages/msgspec.yaml @@ -0,0 +1,6 @@ +package-name: msgspec +source-code: https://github.com/jcrist/msgspec/ +license: BSD-3-Clause +versions: + - version: 0.19.0 + - version: 0.20.0 diff --git a/docs/packages/multidict.md b/docs/packages/multidict.md deleted file mode 100644 index 468f591..0000000 --- a/docs/packages/multidict.md +++ /dev/null @@ -1,133 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/multidict.yaml b/docs/packages/multidict.yaml new file mode 100644 index 0000000..4b848bd --- /dev/null +++ b/docs/packages/multidict.yaml @@ -0,0 +1,15 @@ +package-name: multidict +source-code: https://github.com/aio-libs/multidict +license: Apache 2.0 +versions: + - version: 6.1.0 + - version: 6.2.0 + - version: 6.4.2 + - version: 6.4.3 + - version: 6.4.4 + - version: 6.5.1 + - version: 6.6.2 + - version: 6.6.3 + - version: 6.6.4 + - version: 6.7.0 + - version: 6.7.1 diff --git a/docs/packages/nh3.md b/docs/packages/nh3.md deleted file mode 100644 index 943d494..0000000 --- a/docs/packages/nh3.md +++ /dev/null @@ -1,109 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/nh3.yaml b/docs/packages/nh3.yaml new file mode 100644 index 0000000..982ca17 --- /dev/null +++ b/docs/packages/nh3.yaml @@ -0,0 +1,13 @@ +deprecated: +package-name: nh3 +source-code: https://github.com/messense/nh3 +license: MIT +versions: + - version: 0.2.18 + - version: 0.2.19 + - version: 0.2.20 + - version: 0.2.21 + - version: 0.2.22 + - version: 0.3.0 + - version: 0.3.1 + - version: 0.3.2 diff --git a/docs/packages/ninja.md b/docs/packages/ninja.md deleted file mode 100644 index d8da5c1..0000000 --- a/docs/packages/ninja.md +++ /dev/null @@ -1,58 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/ninja.yaml b/docs/packages/ninja.yaml new file mode 100644 index 0000000..fd70b42 --- /dev/null +++ b/docs/packages/ninja.yaml @@ -0,0 +1,9 @@ +deprecated: +package-name: ninja +source-code: 'https://github.com/scikit-build/ninja-python-distributions' +license: Apache 2.0 +comment: Provides `ninja `_ +versions: + - version: 1.11.1.1 + - version: 1.11.1.2 + - version: 1.11.1.3 diff --git a/docs/packages/numpy.md b/docs/packages/numpy.md deleted file mode 100644 index ad3d77c..0000000 --- a/docs/packages/numpy.md +++ /dev/null @@ -1,192 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/numpy.yaml b/docs/packages/numpy.yaml new file mode 100644 index 0000000..00237ad --- /dev/null +++ b/docs/packages/numpy.yaml @@ -0,0 +1,40 @@ +package-name: numpy +source-code: https://github.com/numpy/numpy +license: BSD-3-Clause +versions: + - version: 1.26.4 + patched: + comment: '`Link `__ to + sources of bundled GPL libraries' + - version: 2.0.0 + comment: Links to sources of bundled GPL libraries are here ( `linux `_, + `manylinux_2_35 `_ + ) + - version: 2.0.1 + comment: '`Link `__ + to sources of bundled GPL libraries' + - version: 2.0.2 + patched: + comment: '`Link `__ + to sources of bundled GPL libraries' + - version: 2.1.3 + comment: '`Link `__ + to sources of bundled GPL libraries' + - version: 2.2.0 + comment: '`Link `__ + to sources of bundled GPL libraries' + - version: 2.2.2 + comment: '`Link `__ + to sources of bundled GPL libraries' + - version: 2.3.1 + patched: + comment: '`Link `__ + to sources of bundled GPL libraries' + - version: 2.3.3 + patched: + comment: '`Link `__ to sources of bundled GPL libraries' + - version: 2.3.4 + comment: '`Link `__ to sources of bundled GPL libraries' + - version: 2.4.2 + comment: '`Link `__ to sources of bundled GPL libraries' + - version: 2.4.3 diff --git a/docs/packages/onnx.md b/docs/packages/onnx.md deleted file mode 100644 index 725a653..0000000 --- a/docs/packages/onnx.md +++ /dev/null @@ -1,66 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/onnx.yaml b/docs/packages/onnx.yaml new file mode 100644 index 0000000..a265dfa --- /dev/null +++ b/docs/packages/onnx.yaml @@ -0,0 +1,16 @@ +package-name: onnx +source-code: https://github.com/onnx/onnx +license: Apache License v2.0 +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. +versions: + - version: 1.19.1 + patched: + - version: 1.20.0 + patched: + - version: 1.20.1 + patched: + - version: 1.21.0 + patched: diff --git a/docs/packages/openai-harmony.md b/docs/packages/openai-harmony.md deleted file mode 100644 index 0226f90..0000000 --- a/docs/packages/openai-harmony.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/openai-harmony.yaml b/docs/packages/openai-harmony.yaml new file mode 100644 index 0000000..efa7c56 --- /dev/null +++ b/docs/packages/openai-harmony.yaml @@ -0,0 +1,7 @@ +package-name: openai-harmony +source-code: https://github.com/openai/harmony +license: Apache-2.0 +versions: + - version: 0.0.4 + - version: 0.0.6 + - version: 0.0.8 diff --git a/docs/packages/optree.md b/docs/packages/optree.md deleted file mode 100644 index 7f8abf6..0000000 --- a/docs/packages/optree.md +++ /dev/null @@ -1,76 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/optree.yaml b/docs/packages/optree.yaml new file mode 100644 index 0000000..a3b4b4e --- /dev/null +++ b/docs/packages/optree.yaml @@ -0,0 +1,10 @@ +deprecated: +package-name: optree +source-code: https://github.com/metaopt/optree +license: Apache 2.0 +versions: + - version: 0.11.0 + - version: 0.12.0 + - version: 0.12.1 + - version: 0.13.0 + - version: 0.13.1 diff --git a/docs/packages/orjson.md b/docs/packages/orjson.md deleted file mode 100644 index a219179..0000000 --- a/docs/packages/orjson.md +++ /dev/null @@ -1,89 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/orjson.yaml b/docs/packages/orjson.yaml new file mode 100644 index 0000000..1bafdc0 --- /dev/null +++ b/docs/packages/orjson.yaml @@ -0,0 +1,11 @@ +package-name: orjson +source-code: https://github.com/ijl/orjson +license: Apache-2.0 OR MIT +versions: + - version: 3.11.3 + - version: 3.11.4 + - version: 3.11.5 + - version: 3.11.6 + - version: 3.11.7 + - version: 3.11.8 + - version: 3.11.9 diff --git a/docs/packages/outlines_core.md b/docs/packages/outlines_core.md deleted file mode 100644 index 760056c..0000000 --- a/docs/packages/outlines_core.md +++ /dev/null @@ -1,82 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/outlines_core.yaml b/docs/packages/outlines_core.yaml new file mode 100644 index 0000000..20afcab --- /dev/null +++ b/docs/packages/outlines_core.yaml @@ -0,0 +1,11 @@ +package-name: outlines-core +source-code: https://github.com/dottxt-ai/outlines-core +license: Apache-2.0 +warning: The Python tests are skipped as they require torch, but the rust unit tests are run. +versions: + - version: 0.1.26 + - version: 0.1.27 + - version: 0.2.2 + - version: 0.2.9 + - version: 0.2.10 + - version: 0.2.11 diff --git a/docs/packages/pandas.md b/docs/packages/pandas.md deleted file mode 100644 index 3ee8745..0000000 --- a/docs/packages/pandas.md +++ /dev/null @@ -1,163 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/pandas.yaml b/docs/packages/pandas.yaml new file mode 100644 index 0000000..de83617 --- /dev/null +++ b/docs/packages/pandas.yaml @@ -0,0 +1,41 @@ +package-name: pandas +source-code: https://github.com/pandas-dev/pandas +license: BSD-3-Clause +versions: + - version: 2.2.2 + comment: We append the files in the LICENSES directory into the LICENSE file in the wheel, resulting in a dirty tag. See `issue 58632 `_ + warning: We disable test_rolling_var_numerical_issues. + - version: 2.2.3 + 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. + - version: 2.3.1 + warning: We disable test_rolling_var_numerical_issues. This test is fixed on main but not on the 2.3.1 tag. + - version: 2.3.2 + patched: + 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 `_. + - version: 2.3.3 + patched: + 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 `_. + - version: 3.0.0 + patched: + warning: | + We skip certain NaN tests on riscv64 because canonical NaN handling differs from other common architectures. + - version: 3.0.1 + patched: + warning: | + We skip certain NaN tests on riscv64 because canonical NaN handling differs from other common architectures. + - version: 3.0.2 + patched: + warning: | + We skip certain NaN tests on riscv64 because canonical NaN handling differs from other common architectures. + - version: 3.0.3 + patched: + warning: | + We skip certain NaN tests on riscv64 because canonical NaN handling differs from other common architectures. diff --git a/docs/packages/patchelf.md b/docs/packages/patchelf.md deleted file mode 100644 index 8ce3ca5..0000000 --- a/docs/packages/patchelf.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/patchelf.yaml b/docs/packages/patchelf.yaml new file mode 100644 index 0000000..47ff7f8 --- /dev/null +++ b/docs/packages/patchelf.yaml @@ -0,0 +1,11 @@ +deprecated: +package-name: patchelf +source-code: 'https://github.com/mayeut/patchelf-pypi' +license: Apache 2.0/GPL v3 +versions: + - version: 0.17.2.1 + patched: + comment: Provides `patchelf `_. Link to `GPL sources `__ + - version: 0.17.2.2 + patched: + comment: Provides `patchelf `_. Link to `GPL sources `__ diff --git a/docs/packages/pillow.md b/docs/packages/pillow.md deleted file mode 100644 index 2f79a7d..0000000 --- a/docs/packages/pillow.md +++ /dev/null @@ -1,130 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/pillow.yaml b/docs/packages/pillow.yaml new file mode 100644 index 0000000..5ebdaf7 --- /dev/null +++ b/docs/packages/pillow.yaml @@ -0,0 +1,30 @@ +package-name: pillow +source-code: https://github.com/python-pillow/Pillow +license: MIT-CMU License +versions: + - version: 10.3.0 + patched: + license: HPND License + - version: 10.4.0 + patched: + license: HPND License + - version: 11.0.0 + patched: + license: HPND License + - version: 11.1.0 + patched: + - version: 11.3.0 + patched: + comment: test_pyroma is incompatible with the latest version of pyroma and is skipped. + - version: 12.0.0 + patched: + - version: 12.1.0 + patched: + - version: 12.1.1 + patched: + - version: 12.2.0 + patched: + comment: | + - 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 diff --git a/docs/packages/polars-runtime-32.md b/docs/packages/polars-runtime-32.md deleted file mode 100644 index ed699f3..0000000 --- a/docs/packages/polars-runtime-32.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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-32.yaml b/docs/packages/polars-runtime-32.yaml new file mode 100644 index 0000000..07980c7 --- /dev/null +++ b/docs/packages/polars-runtime-32.yaml @@ -0,0 +1,10 @@ +package-name: polars-runtime-32 +source-code: https://github.com/pola-rs/polars +license: MIT +versions: + - version: 1.39.3 + - version: 1.40.0 + - version: 1.40.1 + - version: 1.41.0 + - version: 1.41.1 + - version: 1.41.2 diff --git a/docs/packages/polars-runtime-64.md b/docs/packages/polars-runtime-64.md deleted file mode 100644 index 9d36e18..0000000 --- a/docs/packages/polars-runtime-64.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/polars-runtime-64.yaml b/docs/packages/polars-runtime-64.yaml new file mode 100644 index 0000000..b00b414 --- /dev/null +++ b/docs/packages/polars-runtime-64.yaml @@ -0,0 +1,10 @@ +package-name: polars-runtime-64 +source-code: https://github.com/pola-rs/polars +license: MIT +versions: + - version: 1.39.3 + - version: 1.40.0 + - version: 1.40.1 + - version: 1.41.0 + - version: 1.41.1 + - version: 1.41.2 diff --git a/docs/packages/propcache.md b/docs/packages/propcache.md deleted file mode 100644 index e120c2a..0000000 --- a/docs/packages/propcache.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/propcache.yaml b/docs/packages/propcache.yaml new file mode 100644 index 0000000..bbc2ace --- /dev/null +++ b/docs/packages/propcache.yaml @@ -0,0 +1,12 @@ +deprecated: +package-name: propcache +source-code: https://github.com/aio-libs/propcache/ +license: Apache 2.0 +versions: + - version: 0.2.0 + - version: 0.2.1 + - version: 0.3.0 + patched: + - version: 0.3.1 + patched: + - version: 0.4.1 diff --git a/docs/packages/psutil.md b/docs/packages/psutil.md deleted file mode 100644 index 41d2e1d..0000000 --- a/docs/packages/psutil.md +++ /dev/null @@ -1,159 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/psutil.yaml b/docs/packages/psutil.yaml new file mode 100644 index 0000000..03f8783 --- /dev/null +++ b/docs/packages/psutil.yaml @@ -0,0 +1,28 @@ +package-name: psutil +source-code: https://github.com/giampaolo/psutil +license: BSD 3-Clause +versions: + - version: 5.9.8 + warning: Tests are disabled as they fail on riscv64. Investigation needed! + - version: 6.0.0 + patched: + - version: 6.1.0 + patched: + - version: 6.1.1 + patched: + - version: 7.0.0 + patched: + - version: 7.1.0 + patched: + - version: 7.1.1 + patched: + - version: 7.1.2 + patched: + - version: 7.1.3 + patched: + - version: 7.2.0 + patched: + - version: 7.2.1 + patched: + - version: 7.2.2 + patched: diff --git a/docs/packages/pydantic-core.md b/docs/packages/pydantic-core.md deleted file mode 100644 index d166dfb..0000000 --- a/docs/packages/pydantic-core.md +++ /dev/null @@ -1,167 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/pydantic-core.yaml b/docs/packages/pydantic-core.yaml new file mode 100644 index 0000000..49a9d3a --- /dev/null +++ b/docs/packages/pydantic-core.yaml @@ -0,0 +1,24 @@ +deprecated: +package-name: pydantic-core +source-code: https://github.com/pydantic/pydantic-core +license: MIT +versions: + - version: 2.27.2 + - version: 2.33.2 + comment: Built without PGO + - version: 2.39.0 + comment: Built without PGO + - version: 2.40.0 + comment: Built without PGO + - version: 2.40.1 + comment: Built without PGO + - version: 2.41.0 + comment: Built without PGO + - version: 2.41.1 + comment: Built without PGO + - version: 2.41.2 + comment: Built without PGO + - version: 2.41.4 + comment: Built without PGO + - version: 2.41.5 + comment: Built without PGO diff --git a/docs/packages/pynacl.md b/docs/packages/pynacl.md deleted file mode 100644 index 44e63ad..0000000 --- a/docs/packages/pynacl.md +++ /dev/null @@ -1,59 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/pynacl.yaml b/docs/packages/pynacl.yaml new file mode 100644 index 0000000..e1fa91d --- /dev/null +++ b/docs/packages/pynacl.yaml @@ -0,0 +1,11 @@ +package-name: PyNaCl +source-code: https://github.com/pyca/pynacl/ +license: Apache License 2.0 +versions: + - version: 1.5.0 + patched: + - version: 1.6.0 + patched: + - version: 1.6.1 + patched: + - version: 1.6.2 diff --git a/docs/packages/pyuwsgi.md b/docs/packages/pyuwsgi.md deleted file mode 100644 index bee936e..0000000 --- a/docs/packages/pyuwsgi.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -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://pypi.riseproject.dev/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/pyuwsgi.yaml b/docs/packages/pyuwsgi.yaml new file mode 100644 index 0000000..90e60b8 --- /dev/null +++ b/docs/packages/pyuwsgi.yaml @@ -0,0 +1,5 @@ +package-name: pyuwsgi +source-code: https://github.com/lincolnloop/pyuwsgi-wheels +license: GPL2 +versions: + - version: 2.0.30 diff --git a/docs/packages/pyyaml.md b/docs/packages/pyyaml.md deleted file mode 100644 index 9c0bedb..0000000 --- a/docs/packages/pyyaml.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/pyyaml.yaml b/docs/packages/pyyaml.yaml new file mode 100644 index 0000000..f8f7884 --- /dev/null +++ b/docs/packages/pyyaml.yaml @@ -0,0 +1,7 @@ +package-name: PyYAML +source-code: https://github.com/yaml/pyyaml +license: MIT +versions: + - version: 6.0.1 + - version: 6.0.2 + - version: 6.0.3 diff --git a/docs/packages/pyzmq.md b/docs/packages/pyzmq.md deleted file mode 100644 index 38ffc74..0000000 --- a/docs/packages/pyzmq.md +++ /dev/null @@ -1,132 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/pyzmq.yaml b/docs/packages/pyzmq.yaml new file mode 100644 index 0000000..77118fa --- /dev/null +++ b/docs/packages/pyzmq.yaml @@ -0,0 +1,20 @@ +package-name: pyzmq +source-code: https://github.com/zeromq/pyzmq +license: BSD 3-Clause/ISC(sodium)/MPL(zeromq) +versions: + - version: 26.2.0 + comment: '`Link `__ to sources of bundled MPL libraries.' + - version: 26.2.1 + comment: '`Link `__ to sources of bundled MPL libraries.' + - version: 26.3.0 + comment: '`Link `__ to sources of bundled MPL libraries.' + - version: 26.4.0 + comment: '`Link `__ to sources of bundled MPL libraries.' + - version: 27.0.0 + comment: '`Link `__ to sources of bundled MPL libraries.' + - version: 27.0.1 + comment: '`Link `__ to sources of bundled MPL libraries.' + - version: 27.0.2 + comment: '`Link `__ to sources of bundled MPL libraries.' + - version: 27.1.0 + comment: '`Link `__ to sources of bundled MPL libraries.' diff --git a/docs/packages/pyzstd.md b/docs/packages/pyzstd.md deleted file mode 100644 index c86120a..0000000 --- a/docs/packages/pyzstd.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/pyzstd.yaml b/docs/packages/pyzstd.yaml new file mode 100644 index 0000000..4e0c0f8 --- /dev/null +++ b/docs/packages/pyzstd.yaml @@ -0,0 +1,8 @@ +deprecated: +package-name: pyzstd +source-code: https://github.com/Rogdham/pyzstd +license: BSD-3-Clause +versions: + - version: 0.17.0 + patched: + - version: 0.18.0 diff --git a/docs/packages/regex.md b/docs/packages/regex.md deleted file mode 100644 index 404d797..0000000 --- a/docs/packages/regex.md +++ /dev/null @@ -1,153 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/regex.yaml b/docs/packages/regex.yaml new file mode 100644 index 0000000..c417324 --- /dev/null +++ b/docs/packages/regex.yaml @@ -0,0 +1,17 @@ +deprecated: +package-name: regex +source-code: https://github.com/mrabarnett/mrab-regex/tree/hg +license: Apache 2.0 +versions: + - version: 2024.11.6 + - version: 2025.7.29 + - version: 2025.7.31 + - version: 2025.7.33 + - version: 2025.7.34 + - version: 2025.8.29 + - version: 2025.9.1 + - version: 2025.9.18 + - version: 2025.10.22 + - version: 2025.10.23 + - version: 2025.11.3 + - version: 2026.1.14 diff --git a/docs/packages/rignore.md b/docs/packages/rignore.md deleted file mode 100644 index 11df660..0000000 --- a/docs/packages/rignore.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/rignore.yaml b/docs/packages/rignore.yaml new file mode 100644 index 0000000..257c024 --- /dev/null +++ b/docs/packages/rignore.yaml @@ -0,0 +1,11 @@ +package-name: rignore +source-code: https://github.com/patrick91/rignore +license: MIT +versions: + - version: 0.6.4 + - version: 0.7.0 + - version: 0.7.1 + - version: 0.7.2 + - version: 0.7.3 + # versions 0.7.4 and 0.7.5 are yanked on pypi + - version: 0.7.6 diff --git a/docs/packages/rpds-py.md b/docs/packages/rpds-py.md deleted file mode 100644 index 5f61a8c..0000000 --- a/docs/packages/rpds-py.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -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://pypi.riseproject.dev/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/rpds-py.yaml b/docs/packages/rpds-py.yaml new file mode 100644 index 0000000..2011121 --- /dev/null +++ b/docs/packages/rpds-py.yaml @@ -0,0 +1,6 @@ +deprecated: +package-name: rpds-py +source-code: https://github.com/crate-py/rpds +license: MIT +versions: + - version: 0.21.0 diff --git a/docs/packages/safetensors.md b/docs/packages/safetensors.md deleted file mode 100644 index 57919e9..0000000 --- a/docs/packages/safetensors.md +++ /dev/null @@ -1,95 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/safetensors.yaml b/docs/packages/safetensors.yaml new file mode 100644 index 0000000..01ff0f6 --- /dev/null +++ b/docs/packages/safetensors.yaml @@ -0,0 +1,13 @@ +deprecated: +package-name: safetensors +source-code: https://github.com/huggingface/safetensors +license: Apache 2.0 +warning: test\_flax\_comparison.py, test\_pt\_comparison.py, test\_pt\_model.py, test\_simple.py, test\_tf\_comparison.py disabled +versions: + - version: 0.5.2 + - version: 0.5.3 + - version: 0.6.0.dev0 + comment: The tag is dirty but is consistent with `PyPI `__. + - version: 0.6.1 + - version: 0.6.2 + - version: 0.7.0 diff --git a/docs/packages/scikit-image.md b/docs/packages/scikit-image.md deleted file mode 100644 index 762fa7b..0000000 --- a/docs/packages/scikit-image.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/scikit-image.yaml b/docs/packages/scikit-image.yaml new file mode 100644 index 0000000..87ed61e --- /dev/null +++ b/docs/packages/scikit-image.yaml @@ -0,0 +1,11 @@ +package-name: scikit-image +source-code: https://github.com/scikit-image/scikit-image +license: BSD-3-Clause +versions: + - version: 0.22.0 + patched: + comment: | + 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). + - version: 0.25.2 diff --git a/docs/packages/scipy-openblas32.md b/docs/packages/scipy-openblas32.md deleted file mode 100644 index 1f9c4fb..0000000 --- a/docs/packages/scipy-openblas32.md +++ /dev/null @@ -1,101 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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-openblas32.yaml b/docs/packages/scipy-openblas32.yaml new file mode 100644 index 0000000..c484044 --- /dev/null +++ b/docs/packages/scipy-openblas32.yaml @@ -0,0 +1,20 @@ +deprecated: +package-name: scipy-openblas32 +source-code: https://github.com/MacPython/openblas-libs +license: BSD 2-Clause +versions: + - version: 0.3.27.63.1 + patched: + comment: '`Link `__ to sources of bundled GPL libraries' + - version: 0.3.28.0.2 + patched: + comment: '`Link `__ to sources of bundled GPL libraries' + - version: 0.3.29.0.0 + patched: + comment: '`Link `__ to sources of bundled GPL libraries' + - version: 0.3.30.0.1 + patched: + comment: '`Link `__ to sources of bundled GPL libraries' + - version: 0.3.31.22.0 + patched: + comment: '`Link `__ to sources of bundled GPL libraries' diff --git a/docs/packages/scipy-openblas64.md b/docs/packages/scipy-openblas64.md deleted file mode 100644 index 343c54d..0000000 --- a/docs/packages/scipy-openblas64.md +++ /dev/null @@ -1,101 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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-openblas64.yaml b/docs/packages/scipy-openblas64.yaml new file mode 100644 index 0000000..a41f682 --- /dev/null +++ b/docs/packages/scipy-openblas64.yaml @@ -0,0 +1,20 @@ +deprecated: +package-name: scipy-openblas64 +source-code: https://github.com/MacPython/openblas-libs +license: BSD 2-Clause +versions: + - version: 0.3.27.63.1 + patched: + comment: '`Link `__ to sources of bundled GPL libraries' + - version: 0.3.28.0.2 + patched: + comment: '`Link `__ to sources of bundled GPL libraries' + - version: 0.3.29.0.0 + patched: + comment: '`Link `__ to sources of bundled GPL libraries' + - version: 0.3.30.0.1 + patched: + comment: '`Link `__ to sources of bundled GPL libraries' + - version: 0.3.31.22.0 + patched: + comment: '`Link `__ to sources of bundled GPL libraries' diff --git a/docs/packages/scipy.md b/docs/packages/scipy.md deleted file mode 100644 index 9982711..0000000 --- a/docs/packages/scipy.md +++ /dev/null @@ -1,124 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/scipy.yaml b/docs/packages/scipy.yaml new file mode 100644 index 0000000..e54ca6e --- /dev/null +++ b/docs/packages/scipy.yaml @@ -0,0 +1,55 @@ +package-name: scipy +source-code: https://github.com/scipy/scipy +license: BSD-3-Clause +versions: + - version: 1.12.0 + patched: + comment: '`Link `_ to sources of bundled GPL libraries' + - version: 1.14.1 + patched: + warning: | + We disable the following tests as suggested in `#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 `_) + - version: 1.15.0 + patched: + warning: | + We disable the following tests as suggested in `#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 `_) + - version: 1.15.1 + patched: + warning: | + We disable the following tests as suggested in `#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 `_) + - version: 1.15.2 + patched: + warning: | + We disable the following tests as suggested in `#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 `_) diff --git a/docs/packages/sentencepiece.md b/docs/packages/sentencepiece.md deleted file mode 100644 index ea67489..0000000 --- a/docs/packages/sentencepiece.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/sentencepiece.yaml b/docs/packages/sentencepiece.yaml new file mode 100644 index 0000000..ad8a4ed --- /dev/null +++ b/docs/packages/sentencepiece.yaml @@ -0,0 +1,6 @@ +package-name: sentencepiece +source-code: https://github.com/google/sentencepiece +license: Apache 2.0 +versions: + - version: 0.2.0 + - version: 0.2.1 diff --git a/docs/packages/setproctitle.md b/docs/packages/setproctitle.md deleted file mode 100644 index 5551ef8..0000000 --- a/docs/packages/setproctitle.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/setproctitle.yaml b/docs/packages/setproctitle.yaml new file mode 100644 index 0000000..870244a --- /dev/null +++ b/docs/packages/setproctitle.yaml @@ -0,0 +1,9 @@ +package-name: setproctitle +source-code: https://github.com/dvarrazzo/py-setproctitle +license: BSD-3-Clause +versions: + - version: 1.3.5 + patched: + - version: 1.3.6 + patched: + - version: 1.3.7 diff --git a/docs/packages/soundfile.md b/docs/packages/soundfile.md deleted file mode 100644 index cbd27ea..0000000 --- a/docs/packages/soundfile.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -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://pypi.riseproject.dev/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/soundfile.yaml b/docs/packages/soundfile.yaml new file mode 100644 index 0000000..358324b --- /dev/null +++ b/docs/packages/soundfile.yaml @@ -0,0 +1,12 @@ +package-name: soundfile +source-code: https://github.com/bastibe/python-soundfile +license: BSD 3-Clause License +versions: + - version: 0.13.1 + patched: + comment: '`Link `__ 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 deleted file mode 100644 index e2c6e5d..0000000 --- a/docs/packages/swig.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -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://pypi.riseproject.dev/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/swig.yaml b/docs/packages/swig.yaml new file mode 100644 index 0000000..6fde4ae --- /dev/null +++ b/docs/packages/swig.yaml @@ -0,0 +1,6 @@ +deprecated: +package-name: swig +source-code: https://github.com/nightlark/swig-pypi +license: Apache 2.0/GPL v3/`Others `_ +versions: + - version: 4.3.1 diff --git a/docs/packages/tiktoken.md b/docs/packages/tiktoken.md deleted file mode 100644 index eb1d188..0000000 --- a/docs/packages/tiktoken.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/tiktoken.yaml b/docs/packages/tiktoken.yaml new file mode 100644 index 0000000..7afe3c1 --- /dev/null +++ b/docs/packages/tiktoken.yaml @@ -0,0 +1,12 @@ +package-name: tiktoken +source-code: https://github.com/openai/tiktoken +license: MIT +versions: + - version: 0.7.0 + - version: 0.8.0 + - version: 0.9.0 + # tag 0.10.0 exists on pypi, but not 0.10.0 tag exists in the code + # so we can't build it + - version: 0.11.0 + - version: 0.12.0 + - version: 0.13.0 diff --git a/docs/packages/tlparse.md b/docs/packages/tlparse.md deleted file mode 100644 index 24566e7..0000000 --- a/docs/packages/tlparse.md +++ /dev/null @@ -1,104 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/tlparse.yaml b/docs/packages/tlparse.yaml new file mode 100644 index 0000000..fe558e4 --- /dev/null +++ b/docs/packages/tlparse.yaml @@ -0,0 +1,16 @@ +package-name: tlparse +source-code: https://github.com/ezyang/tlparse +license: BSD 3-Clause +versions: + - version: 0.3.5 + patched: + - version: 0.3.7 + patched: + - version: 0.3.25 + patched: + - version: 0.3.30 + patched: + - version: 0.4.0 + - version: 0.4.1 + - version: 0.4.2 + - version: 0.4.3 diff --git a/docs/packages/tokenizers.md b/docs/packages/tokenizers.md deleted file mode 100644 index a817771..0000000 --- a/docs/packages/tokenizers.md +++ /dev/null @@ -1,95 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/tokenizers.yaml b/docs/packages/tokenizers.yaml new file mode 100644 index 0000000..17e37c2 --- /dev/null +++ b/docs/packages/tokenizers.yaml @@ -0,0 +1,13 @@ +deprecated: +package-name: tokenizers +source-code: https://github.com/huggingface/tokenizers +license: Apache 2.0 +comment: License file included in the wheel. +warning: test\_tutorial\_train\_from\_iterators.py disabled due to missing dependency. +versions: + - version: 0.20.3 + - version: 0.21.0 + - version: 0.21.1 + - version: 0.22.0 + - version: 0.22.1 + - version: 0.22.2 diff --git a/docs/packages/tornado.md b/docs/packages/tornado.md deleted file mode 100644 index 1618f03..0000000 --- a/docs/packages/tornado.md +++ /dev/null @@ -1,162 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/tornado.yaml b/docs/packages/tornado.yaml new file mode 100644 index 0000000..013098a --- /dev/null +++ b/docs/packages/tornado.yaml @@ -0,0 +1,24 @@ +package-name: tornado +source-code: https://github.com/tornadoweb/tornado +license: Apache 2.0 +versions: + - version: 6.4.1 + warning: Currently only run tornado.test.web\_test. **CVE-2024-52804**, **CVE-2025-47287** + - version: 6.4.2 + warning: Currently only run tornado.test.web\_test. **CVE-2025-47287** + - version: 6.5 + warning: Currently only run tornado.test.web\_test. + - version: 6.5.1 + warning: Currently only run tornado.test.web\_test. + - version: 6.5.2 + warning: Currently only run tornado.test.web\_test. + - version: 6.5.3 + warning: Currently only run tornado.test.web\_test. + - version: 6.5.4 + warning: Currently only run tornado.test.web\_test. + - version: 6.5.5 + warning: Currently only run tornado.test.web\_test. + - version: 6.5.6 + warning: Currently only run tornado.test.web\_test. + - version: 6.5.7 + warning: Currently only run tornado.test.web\_test. diff --git a/docs/packages/ujson.md b/docs/packages/ujson.md deleted file mode 100644 index aaafd01..0000000 --- a/docs/packages/ujson.md +++ /dev/null @@ -1,67 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/ujson.yaml b/docs/packages/ujson.yaml new file mode 100644 index 0000000..0e3dfd0 --- /dev/null +++ b/docs/packages/ujson.yaml @@ -0,0 +1,9 @@ +package-name: ujson +source-code: https://github.com/ultrajson/ultrajson +license: BSD-3-Clause + TCL/TK License +versions: + - version: 5.10.0 + - version: 5.11.0 + - version: 5.12.0 + - version: 5.12.1 + - version: 5.13.0 diff --git a/docs/packages/uv.md b/docs/packages/uv.md deleted file mode 100644 index dcf6329..0000000 --- a/docs/packages/uv.md +++ /dev/null @@ -1,134 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/uv.yaml b/docs/packages/uv.yaml new file mode 100644 index 0000000..d2c32de --- /dev/null +++ b/docs/packages/uv.yaml @@ -0,0 +1,86 @@ +deprecated: +package-name: uv +source-code: https://github.com/astral-sh/uv +license: MIT or Apache 2.0 +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 +versions: + - version: 0.6.3 + patched: + - version: 0.6.6 + patched: + - version: 0.7.13 + patched: diff --git a/docs/packages/uvloop.md b/docs/packages/uvloop.md deleted file mode 100644 index e43680b..0000000 --- a/docs/packages/uvloop.md +++ /dev/null @@ -1,60 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/uvloop.yaml b/docs/packages/uvloop.yaml new file mode 100644 index 0000000..ca7c5bc --- /dev/null +++ b/docs/packages/uvloop.yaml @@ -0,0 +1,30 @@ +package-name: uvloop +source-code: https://github.com/MagicStack/uvloop +license: MIT or Apache 2.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} +versions: + - version: 0.21.0 + patched: + - version: 0.22.1 + patched: diff --git a/docs/packages/video-reader-rs.md b/docs/packages/video-reader-rs.md deleted file mode 100644 index cbc873f..0000000 --- a/docs/packages/video-reader-rs.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -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://pypi.riseproject.dev/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/video-reader-rs.yaml b/docs/packages/video-reader-rs.yaml new file mode 100644 index 0000000..021818c --- /dev/null +++ b/docs/packages/video-reader-rs.yaml @@ -0,0 +1,16 @@ +deprecated: +package-name: video-reader-rs +source-code: https://github.com/gcanat/video_reader-rs +license: MIT OR LGPL-2.1 +versions: + - version: 0.2.10 + patched: + comment: '`Link `__ 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 deleted file mode 100644 index 753ebe8..0000000 --- a/docs/packages/watchfiles.md +++ /dev/null @@ -1,62 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/watchfiles.yaml b/docs/packages/watchfiles.yaml new file mode 100644 index 0000000..6576971 --- /dev/null +++ b/docs/packages/watchfiles.yaml @@ -0,0 +1,14 @@ +deprecated: +package-name: watchfiles +source-code: https://github.com/samuelcolvin/watchfiles +license: MIT +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. +versions: + - version: 1.0.5 + - version: 1.1.0 + - version: 1.1.1 diff --git a/docs/packages/websockets.md b/docs/packages/websockets.md deleted file mode 100644 index 34f0a36..0000000 --- a/docs/packages/websockets.md +++ /dev/null @@ -1,71 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/websockets.yaml b/docs/packages/websockets.yaml new file mode 100644 index 0000000..71c2e5e --- /dev/null +++ b/docs/packages/websockets.yaml @@ -0,0 +1,10 @@ +package-name: websockets +source-code: https://github.com/python-websockets/websockets +license: BSD-3-Clause +versions: + - version: 14.1 + - version: 14.2 + - version: 15.0 + - version: 15.0.1 + - version: 16.0 + comment: Tests are disabled on this version, as suggested by maintainer, since tests are not designed to be run on packaging. See `this discussion `__. diff --git a/docs/packages/wrapt.md b/docs/packages/wrapt.md deleted file mode 100644 index a5b1091..0000000 --- a/docs/packages/wrapt.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/wrapt.yaml b/docs/packages/wrapt.yaml new file mode 100644 index 0000000..603530c --- /dev/null +++ b/docs/packages/wrapt.yaml @@ -0,0 +1,7 @@ +deprecated: +package-name: wrapt +source-code: https://github.com/GrahamDumpleton/wrapt +license: BSD-2-Clause +versions: + - version: 1.17.2 + - version: 1.17.3 diff --git a/docs/packages/xxhash.md b/docs/packages/xxhash.md deleted file mode 100644 index a765ba9..0000000 --- a/docs/packages/xxhash.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/xxhash.yaml b/docs/packages/xxhash.yaml new file mode 100644 index 0000000..2ecdbfc --- /dev/null +++ b/docs/packages/xxhash.yaml @@ -0,0 +1,7 @@ +deprecated: +package-name: xxhash +source-code: https://github.com/ifduyue/python-xxhash +license: BSD 2-Clause +versions: + - version: 3.5.0 + - version: 3.6.0 diff --git a/docs/packages/yarl.md b/docs/packages/yarl.md deleted file mode 100644 index a65ac49..0000000 --- a/docs/packages/yarl.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/yarl.yaml b/docs/packages/yarl.yaml new file mode 100644 index 0000000..62f3b3f --- /dev/null +++ b/docs/packages/yarl.yaml @@ -0,0 +1,8 @@ +deprecated: +package-name: yarl +source-code: https://github.com/aio-libs/yarl/ +license: Apache 2.0 +versions: + - version: 1.18.3 + - version: 1.20.0 + patched: diff --git a/docs/packages/z3-solver.md b/docs/packages/z3-solver.md deleted file mode 100644 index dd42460..0000000 --- a/docs/packages/z3-solver.md +++ /dev/null @@ -1,108 +0,0 @@ ---- -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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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://pypi.riseproject.dev/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/packages/z3-solver.yaml b/docs/packages/z3-solver.yaml new file mode 100644 index 0000000..0e3e726 --- /dev/null +++ b/docs/packages/z3-solver.yaml @@ -0,0 +1,24 @@ +package-name: z3-solver +source-code: https://github.com/Z3Prover/z3 +license: MIT +versions: + - version: 4.12.2.0 + patched: + comment: '`Link `__ to + sources of bundled GPL libraries (libatomic)' + - version: 4.12.6.0 + patched: + comment: '`Link `__ to + sources of bundled GPL libraries (libatomic)' + - version: 4.14.1.0 + patched: + comment: '`Link `__ to + sources of bundled GPL libraries (libatomic)' + - version: 4.15.1.0 + patched: + - version: 4.15.4.0 + patched: + - version: 4.15.8.0 + patched: + - version: 4.16.0.0 + patched: