├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── build-cache.yml │ └── cron-build-cache.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── DETAILS.rst ├── EOL.rst ├── LICENSE ├── README.rst ├── cache ├── aarch64 │ ├── almalinux-10.json │ ├── almalinux-8.json │ ├── almalinux-9.json │ ├── alt-p10.json │ ├── alt-p11.json │ ├── alt-p9.json │ ├── alt-sisyphus.json │ ├── amazonlinux-2.json │ ├── amazonlinux-2023.json │ ├── anolisos-23.json │ ├── anolisos-8.json │ ├── centos-7.json │ ├── centos-8.json │ ├── centos-stream10.json │ ├── centos-stream8.json │ ├── centos-stream9.json │ ├── debian-10.json │ ├── debian-11.json │ ├── debian-12.json │ ├── debian-13.json │ ├── debian-9.json │ ├── debian-experimental.json │ ├── debian-testing.json │ ├── debian-unstable.json │ ├── fedora-32.json │ ├── fedora-33.json │ ├── fedora-34.json │ ├── fedora-35.json │ ├── fedora-36.json │ ├── fedora-37.json │ ├── fedora-38.json │ ├── fedora-39.json │ ├── fedora-40.json │ ├── fedora-41.json │ ├── fedora-42.json │ ├── fedora-43.json │ ├── fedora-rawhide.json │ ├── mageia-7.json │ ├── mageia-8.json │ ├── mageia-9.json │ ├── mageia-cauldron.json │ ├── manylinux-2014.json │ ├── manylinux-2_24.json │ ├── manylinux-2_28.json │ ├── manylinux-2_34.json │ ├── manylinux-2_39.json │ ├── opencloudos-8.json │ ├── opencloudos-9.json │ ├── openeuler-24.03.json │ ├── opensuse-15.1.json │ ├── opensuse-15.2.json │ ├── opensuse-15.3.json │ ├── opensuse-15.4.json │ ├── opensuse-15.5.json │ ├── opensuse-15.6.json │ ├── opensuse-16.0.json │ ├── opensuse-tumbleweed.json │ ├── oraclelinux-10.json │ ├── oraclelinux-7.json │ ├── oraclelinux-8.json │ ├── oraclelinux-9.json │ ├── photon-3.0.json │ ├── photon-4.0.json │ ├── photon-5.0.json │ ├── rhubi-10.json │ ├── rhubi-8.json │ ├── rhubi-9.json │ ├── rockylinux-10.json │ ├── rockylinux-8.json │ ├── rockylinux-9.json │ ├── ubuntu-14.04.json │ ├── ubuntu-16.04.json │ ├── ubuntu-18.04.json │ ├── ubuntu-20.04.json │ ├── ubuntu-20.10.json │ ├── ubuntu-21.04.json │ ├── ubuntu-21.10.json │ ├── ubuntu-22.04.json │ ├── ubuntu-22.10.json │ ├── ubuntu-23.04.json │ ├── ubuntu-23.10.json │ ├── ubuntu-24.04.json │ ├── ubuntu-24.10.json │ ├── ubuntu-25.04.json │ ├── ubuntu-25.10.json │ ├── ubuntu-devel.json │ └── ubuntu-rolling.json ├── armv7l │ ├── debian-10.json │ ├── debian-11.json │ ├── debian-12.json │ ├── debian-13.json │ ├── debian-8.json │ ├── debian-9.json │ ├── debian-experimental.json │ ├── debian-testing.json │ ├── debian-unstable.json │ ├── fedora-32.json │ ├── fedora-33.json │ ├── manylinux-2_31.json │ ├── opensuse-15.1.json │ ├── opensuse-15.2.json │ ├── opensuse-15.3.json │ ├── opensuse-15.4.json │ ├── opensuse-15.5.json │ ├── opensuse-tumbleweed.json │ ├── ubuntu-14.04.json │ ├── ubuntu-16.04.json │ ├── ubuntu-18.04.json │ ├── ubuntu-20.04.json │ ├── ubuntu-20.10.json │ ├── ubuntu-21.04.json │ ├── ubuntu-21.10.json │ ├── ubuntu-22.04.json │ ├── ubuntu-22.10.json │ ├── ubuntu-23.04.json │ ├── ubuntu-23.10.json │ ├── ubuntu-24.04.json │ ├── ubuntu-24.10.json │ ├── ubuntu-25.04.json │ ├── ubuntu-25.10.json │ ├── ubuntu-devel.json │ └── ubuntu-rolling.json ├── current-policies.json ├── i686 │ ├── alt-p10.json │ ├── alt-p11.json │ ├── alt-p8.json │ ├── alt-p9.json │ ├── alt-sisyphus.json │ ├── centos-7.json │ ├── debian-10.json │ ├── debian-11.json │ ├── debian-12.json │ ├── debian-13.json │ ├── debian-8.json │ ├── debian-9.json │ ├── debian-experimental.json │ ├── debian-testing.json │ ├── debian-unstable.json │ ├── manylinux-1.json │ ├── manylinux-2010.json │ ├── manylinux-2014.json │ ├── manylinux-2_24.json │ ├── manylinux-2_28.json │ ├── manylinux-2_34.json │ ├── opensuse-tumbleweed.json │ ├── ubuntu-14.04.json │ ├── ubuntu-16.04.json │ └── ubuntu-18.04.json ├── loongarch64 │ ├── anolisos-23.json │ ├── debian-13.json │ └── openeuler-24.03.json ├── ppc64le │ ├── almalinux-10.json │ ├── almalinux-8.json │ ├── almalinux-9.json │ ├── alt-p9.json │ ├── centos-7.json │ ├── centos-8.json │ ├── centos-stream10.json │ ├── centos-stream8.json │ ├── centos-stream9.json │ ├── debian-10.json │ ├── debian-11.json │ ├── debian-12.json │ ├── debian-13.json │ ├── debian-9.json │ ├── debian-experimental.json │ ├── debian-testing.json │ ├── debian-unstable.json │ ├── fedora-32.json │ ├── fedora-33.json │ ├── fedora-34.json │ ├── fedora-35.json │ ├── fedora-36.json │ ├── fedora-37.json │ ├── fedora-38.json │ ├── fedora-39.json │ ├── fedora-40.json │ ├── fedora-41.json │ ├── fedora-42.json │ ├── fedora-43.json │ ├── fedora-rawhide.json │ ├── manylinux-2014.json │ ├── manylinux-2_24.json │ ├── manylinux-2_28.json │ ├── manylinux-2_34.json │ ├── opensuse-15.1.json │ ├── opensuse-15.2.json │ ├── opensuse-15.3.json │ ├── opensuse-15.4.json │ ├── opensuse-15.5.json │ ├── opensuse-16.0.json │ ├── opensuse-tumbleweed.json │ ├── rhubi-10.json │ ├── rhubi-7.json │ ├── rhubi-8.json │ ├── rhubi-9.json │ ├── rockylinux-10.json │ ├── rockylinux-9.json │ ├── ubuntu-14.04.json │ ├── ubuntu-16.04.json │ ├── ubuntu-18.04.json │ ├── ubuntu-20.04.json │ ├── ubuntu-20.10.json │ ├── ubuntu-21.04.json │ ├── ubuntu-21.10.json │ ├── ubuntu-22.04.json │ ├── ubuntu-22.10.json │ ├── ubuntu-23.04.json │ ├── ubuntu-23.10.json │ ├── ubuntu-24.04.json │ ├── ubuntu-24.10.json │ ├── ubuntu-25.04.json │ ├── ubuntu-25.10.json │ ├── ubuntu-devel.json │ └── ubuntu-rolling.json ├── riscv64 │ ├── debian-13.json │ ├── debian-experimental.json │ ├── debian-testing.json │ ├── debian-unstable.json │ ├── manylinux-2_39.json │ ├── opensuse-tumbleweed.json │ ├── rockylinux-10.json │ ├── ubuntu-20.04.json │ ├── ubuntu-22.04.json │ ├── ubuntu-22.10.json │ ├── ubuntu-23.04.json │ ├── ubuntu-24.04.json │ ├── ubuntu-25.04.json │ ├── ubuntu-25.10.json │ ├── ubuntu-devel.json │ └── ubuntu-rolling.json ├── s390x │ ├── almalinux-10.json │ ├── almalinux-8.json │ ├── almalinux-9.json │ ├── centos-stream10.json │ ├── centos-stream9.json │ ├── clefos-7.json │ ├── debian-10.json │ ├── debian-11.json │ ├── debian-12.json │ ├── debian-13.json │ ├── debian-9.json │ ├── debian-experimental.json │ ├── debian-testing.json │ ├── debian-unstable.json │ ├── fedora-32.json │ ├── fedora-33.json │ ├── fedora-34.json │ ├── fedora-35.json │ ├── fedora-36.json │ ├── fedora-37.json │ ├── fedora-38.json │ ├── fedora-39.json │ ├── fedora-40.json │ ├── fedora-41.json │ ├── fedora-42.json │ ├── fedora-43.json │ ├── fedora-rawhide.json │ ├── manylinux-2014.json │ ├── manylinux-2_24.json │ ├── manylinux-2_28.json │ ├── manylinux-2_34.json │ ├── opensuse-15.3.json │ ├── opensuse-15.4.json │ ├── opensuse-15.5.json │ ├── opensuse-tumbleweed.json │ ├── rhubi-10.json │ ├── rhubi-7.json │ ├── rhubi-8.json │ ├── rhubi-9.json │ ├── rockylinux-10.json │ ├── rockylinux-9.json │ ├── ubuntu-16.04.json │ ├── ubuntu-18.04.json │ ├── ubuntu-20.04.json │ ├── ubuntu-20.10.json │ ├── ubuntu-21.04.json │ ├── ubuntu-21.10.json │ ├── ubuntu-22.04.json │ ├── ubuntu-22.10.json │ ├── ubuntu-23.04.json │ ├── ubuntu-23.10.json │ ├── ubuntu-24.04.json │ ├── ubuntu-24.10.json │ ├── ubuntu-25.04.json │ ├── ubuntu-25.10.json │ ├── ubuntu-devel.json │ └── ubuntu-rolling.json └── x86_64 │ ├── almalinux-10.json │ ├── almalinux-8.json │ ├── almalinux-9.json │ ├── alt-p10.json │ ├── alt-p11.json │ ├── alt-p8.json │ ├── alt-p9.json │ ├── alt-sisyphus.json │ ├── amazonlinux-1.json │ ├── amazonlinux-2.json │ ├── amazonlinux-2023.json │ ├── anolisos-23.json │ ├── anolisos-8.json │ ├── archlinux-latest.json │ ├── centos-7.json │ ├── centos-8.json │ ├── centos-stream10.json │ ├── centos-stream8.json │ ├── centos-stream9.json │ ├── debian-10.json │ ├── debian-11.json │ ├── debian-12.json │ ├── debian-13.json │ ├── debian-8.json │ ├── debian-9.json │ ├── debian-experimental.json │ ├── debian-testing.json │ ├── debian-unstable.json │ ├── fedora-32.json │ ├── fedora-33.json │ ├── fedora-34.json │ ├── fedora-35.json │ ├── fedora-36.json │ ├── fedora-37.json │ ├── fedora-38.json │ ├── fedora-39.json │ ├── fedora-40.json │ ├── fedora-41.json │ ├── fedora-42.json │ ├── fedora-43.json │ ├── fedora-rawhide.json │ ├── mageia-7.json │ ├── mageia-8.json │ ├── mageia-9.json │ ├── mageia-cauldron.json │ ├── manylinux-1.json │ ├── manylinux-2010.json │ ├── manylinux-2014.json │ ├── manylinux-2_24.json │ ├── manylinux-2_28.json │ ├── manylinux-2_34.json │ ├── opencloudos-8.json │ ├── opencloudos-9.json │ ├── openeuler-24.03.json │ ├── opensuse-15.1.json │ ├── opensuse-15.2.json │ ├── opensuse-15.3.json │ ├── opensuse-15.4.json │ ├── opensuse-15.5.json │ ├── opensuse-15.6.json │ ├── opensuse-16.0.json │ ├── opensuse-tumbleweed.json │ ├── oraclelinux-10.json │ ├── oraclelinux-6.json │ ├── oraclelinux-7.json │ ├── oraclelinux-8.json │ ├── oraclelinux-9.json │ ├── photon-1.0.json │ ├── photon-2.0.json │ ├── photon-3.0.json │ ├── photon-4.0.json │ ├── photon-5.0.json │ ├── rhubi-10.json │ ├── rhubi-7.json │ ├── rhubi-8.json │ ├── rhubi-9.json │ ├── rockylinux-10.json │ ├── rockylinux-8.json │ ├── rockylinux-9.json │ ├── slackware-14.0.json │ ├── slackware-14.1.json │ ├── slackware-14.2.json │ ├── slackware-15.0.json │ ├── slackware-current.json │ ├── ubuntu-14.04.json │ ├── ubuntu-16.04.json │ ├── ubuntu-18.04.json │ ├── ubuntu-20.04.json │ ├── ubuntu-20.10.json │ ├── ubuntu-21.04.json │ ├── ubuntu-21.10.json │ ├── ubuntu-22.04.json │ ├── ubuntu-22.10.json │ ├── ubuntu-23.04.json │ ├── ubuntu-23.10.json │ ├── ubuntu-24.04.json │ ├── ubuntu-24.10.json │ ├── ubuntu-25.04.json │ ├── ubuntu-25.10.json │ ├── ubuntu-devel.json │ └── ubuntu-rolling.json ├── noxfile.py ├── pep600_compliance ├── __init__.py ├── __main__.py ├── images │ ├── __init__.py │ ├── base.py │ ├── os │ │ ├── __init__.py │ │ ├── almalinux.py │ │ ├── alt.py │ │ ├── amazonlinux.py │ │ ├── anolisos.py │ │ ├── archlinux.py │ │ ├── centos.py │ │ ├── clefos.py │ │ ├── debian.py │ │ ├── fedora.py │ │ ├── mageia.py │ │ ├── manylinux.py │ │ ├── opencloudos.py │ │ ├── openeuler.py │ │ ├── opensuse.py │ │ ├── oraclelinux.py │ │ ├── photon.py │ │ ├── rhubi.py │ │ ├── rockylinux.py │ │ ├── slackware.py │ │ └── ubuntu.py │ └── package_manager.py ├── make_policies.py ├── policies │ ├── __init__.py │ └── manylinux-policy.json └── tools │ ├── __init__.py │ ├── calculate_symbol_versions.py │ └── ldd.py ├── pyproject.toml ├── requirements.in └── requirements.txt /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | extend-ignore = E203 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/.github/workflows/build-cache.yml -------------------------------------------------------------------------------- /.github/workflows/cron-build-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/.github/workflows/cron-build-cache.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.14 2 | -------------------------------------------------------------------------------- /DETAILS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/DETAILS.rst -------------------------------------------------------------------------------- /EOL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/EOL.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/README.rst -------------------------------------------------------------------------------- /cache/aarch64/almalinux-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/almalinux-10.json -------------------------------------------------------------------------------- /cache/aarch64/almalinux-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/almalinux-8.json -------------------------------------------------------------------------------- /cache/aarch64/almalinux-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/almalinux-9.json -------------------------------------------------------------------------------- /cache/aarch64/alt-p10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/alt-p10.json -------------------------------------------------------------------------------- /cache/aarch64/alt-p11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/alt-p11.json -------------------------------------------------------------------------------- /cache/aarch64/alt-p9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/alt-p9.json -------------------------------------------------------------------------------- /cache/aarch64/alt-sisyphus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/alt-sisyphus.json -------------------------------------------------------------------------------- /cache/aarch64/amazonlinux-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/amazonlinux-2.json -------------------------------------------------------------------------------- /cache/aarch64/amazonlinux-2023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/amazonlinux-2023.json -------------------------------------------------------------------------------- /cache/aarch64/anolisos-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/anolisos-23.json -------------------------------------------------------------------------------- /cache/aarch64/anolisos-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/anolisos-8.json -------------------------------------------------------------------------------- /cache/aarch64/centos-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/centos-7.json -------------------------------------------------------------------------------- /cache/aarch64/centos-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/centos-8.json -------------------------------------------------------------------------------- /cache/aarch64/centos-stream10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/centos-stream10.json -------------------------------------------------------------------------------- /cache/aarch64/centos-stream8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/centos-stream8.json -------------------------------------------------------------------------------- /cache/aarch64/centos-stream9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/centos-stream9.json -------------------------------------------------------------------------------- /cache/aarch64/debian-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/debian-10.json -------------------------------------------------------------------------------- /cache/aarch64/debian-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/debian-11.json -------------------------------------------------------------------------------- /cache/aarch64/debian-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/debian-12.json -------------------------------------------------------------------------------- /cache/aarch64/debian-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/debian-13.json -------------------------------------------------------------------------------- /cache/aarch64/debian-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/debian-9.json -------------------------------------------------------------------------------- /cache/aarch64/debian-experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/debian-experimental.json -------------------------------------------------------------------------------- /cache/aarch64/debian-testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/debian-testing.json -------------------------------------------------------------------------------- /cache/aarch64/debian-unstable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/debian-unstable.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-32.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-33.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-34.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-35.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-36.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-37.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-38.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-39.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-40.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-41.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-42.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-43.json -------------------------------------------------------------------------------- /cache/aarch64/fedora-rawhide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/fedora-rawhide.json -------------------------------------------------------------------------------- /cache/aarch64/mageia-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/mageia-7.json -------------------------------------------------------------------------------- /cache/aarch64/mageia-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/mageia-8.json -------------------------------------------------------------------------------- /cache/aarch64/mageia-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/mageia-9.json -------------------------------------------------------------------------------- /cache/aarch64/mageia-cauldron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/mageia-cauldron.json -------------------------------------------------------------------------------- /cache/aarch64/manylinux-2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/manylinux-2014.json -------------------------------------------------------------------------------- /cache/aarch64/manylinux-2_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/manylinux-2_24.json -------------------------------------------------------------------------------- /cache/aarch64/manylinux-2_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/manylinux-2_28.json -------------------------------------------------------------------------------- /cache/aarch64/manylinux-2_34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/manylinux-2_34.json -------------------------------------------------------------------------------- /cache/aarch64/manylinux-2_39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/manylinux-2_39.json -------------------------------------------------------------------------------- /cache/aarch64/opencloudos-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/opencloudos-8.json -------------------------------------------------------------------------------- /cache/aarch64/opencloudos-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/opencloudos-9.json -------------------------------------------------------------------------------- /cache/aarch64/openeuler-24.03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/openeuler-24.03.json -------------------------------------------------------------------------------- /cache/aarch64/opensuse-15.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/opensuse-15.1.json -------------------------------------------------------------------------------- /cache/aarch64/opensuse-15.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/opensuse-15.2.json -------------------------------------------------------------------------------- /cache/aarch64/opensuse-15.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/opensuse-15.3.json -------------------------------------------------------------------------------- /cache/aarch64/opensuse-15.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/opensuse-15.4.json -------------------------------------------------------------------------------- /cache/aarch64/opensuse-15.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/opensuse-15.5.json -------------------------------------------------------------------------------- /cache/aarch64/opensuse-15.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/opensuse-15.6.json -------------------------------------------------------------------------------- /cache/aarch64/opensuse-16.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/opensuse-16.0.json -------------------------------------------------------------------------------- /cache/aarch64/opensuse-tumbleweed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/opensuse-tumbleweed.json -------------------------------------------------------------------------------- /cache/aarch64/oraclelinux-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/oraclelinux-10.json -------------------------------------------------------------------------------- /cache/aarch64/oraclelinux-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/oraclelinux-7.json -------------------------------------------------------------------------------- /cache/aarch64/oraclelinux-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/oraclelinux-8.json -------------------------------------------------------------------------------- /cache/aarch64/oraclelinux-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/oraclelinux-9.json -------------------------------------------------------------------------------- /cache/aarch64/photon-3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/photon-3.0.json -------------------------------------------------------------------------------- /cache/aarch64/photon-4.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/photon-4.0.json -------------------------------------------------------------------------------- /cache/aarch64/photon-5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/photon-5.0.json -------------------------------------------------------------------------------- /cache/aarch64/rhubi-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/rhubi-10.json -------------------------------------------------------------------------------- /cache/aarch64/rhubi-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/rhubi-8.json -------------------------------------------------------------------------------- /cache/aarch64/rhubi-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/rhubi-9.json -------------------------------------------------------------------------------- /cache/aarch64/rockylinux-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/rockylinux-10.json -------------------------------------------------------------------------------- /cache/aarch64/rockylinux-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/rockylinux-8.json -------------------------------------------------------------------------------- /cache/aarch64/rockylinux-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/rockylinux-9.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-14.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-14.04.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-16.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-16.04.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-18.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-18.04.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-20.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-20.04.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-20.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-20.10.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-21.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-21.04.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-21.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-21.10.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-22.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-22.04.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-22.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-22.10.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-23.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-23.04.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-23.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-23.10.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-24.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-24.04.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-24.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-24.10.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-25.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-25.04.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-25.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-25.10.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-devel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-devel.json -------------------------------------------------------------------------------- /cache/aarch64/ubuntu-rolling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/aarch64/ubuntu-rolling.json -------------------------------------------------------------------------------- /cache/armv7l/debian-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/debian-10.json -------------------------------------------------------------------------------- /cache/armv7l/debian-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/debian-11.json -------------------------------------------------------------------------------- /cache/armv7l/debian-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/debian-12.json -------------------------------------------------------------------------------- /cache/armv7l/debian-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/debian-13.json -------------------------------------------------------------------------------- /cache/armv7l/debian-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/debian-8.json -------------------------------------------------------------------------------- /cache/armv7l/debian-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/debian-9.json -------------------------------------------------------------------------------- /cache/armv7l/debian-experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/debian-experimental.json -------------------------------------------------------------------------------- /cache/armv7l/debian-testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/debian-testing.json -------------------------------------------------------------------------------- /cache/armv7l/debian-unstable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/debian-unstable.json -------------------------------------------------------------------------------- /cache/armv7l/fedora-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/fedora-32.json -------------------------------------------------------------------------------- /cache/armv7l/fedora-33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/fedora-33.json -------------------------------------------------------------------------------- /cache/armv7l/manylinux-2_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/manylinux-2_31.json -------------------------------------------------------------------------------- /cache/armv7l/opensuse-15.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/opensuse-15.1.json -------------------------------------------------------------------------------- /cache/armv7l/opensuse-15.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/opensuse-15.2.json -------------------------------------------------------------------------------- /cache/armv7l/opensuse-15.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/opensuse-15.3.json -------------------------------------------------------------------------------- /cache/armv7l/opensuse-15.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/opensuse-15.4.json -------------------------------------------------------------------------------- /cache/armv7l/opensuse-15.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/opensuse-15.5.json -------------------------------------------------------------------------------- /cache/armv7l/opensuse-tumbleweed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/opensuse-tumbleweed.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-14.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-14.04.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-16.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-16.04.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-18.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-18.04.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-20.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-20.04.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-20.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-20.10.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-21.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-21.04.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-21.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-21.10.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-22.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-22.04.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-22.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-22.10.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-23.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-23.04.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-23.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-23.10.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-24.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-24.04.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-24.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-24.10.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-25.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-25.04.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-25.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-25.10.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-devel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-devel.json -------------------------------------------------------------------------------- /cache/armv7l/ubuntu-rolling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/armv7l/ubuntu-rolling.json -------------------------------------------------------------------------------- /cache/current-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/current-policies.json -------------------------------------------------------------------------------- /cache/i686/alt-p10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/alt-p10.json -------------------------------------------------------------------------------- /cache/i686/alt-p11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/alt-p11.json -------------------------------------------------------------------------------- /cache/i686/alt-p8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/alt-p8.json -------------------------------------------------------------------------------- /cache/i686/alt-p9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/alt-p9.json -------------------------------------------------------------------------------- /cache/i686/alt-sisyphus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/alt-sisyphus.json -------------------------------------------------------------------------------- /cache/i686/centos-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/centos-7.json -------------------------------------------------------------------------------- /cache/i686/debian-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/debian-10.json -------------------------------------------------------------------------------- /cache/i686/debian-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/debian-11.json -------------------------------------------------------------------------------- /cache/i686/debian-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/debian-12.json -------------------------------------------------------------------------------- /cache/i686/debian-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/debian-13.json -------------------------------------------------------------------------------- /cache/i686/debian-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/debian-8.json -------------------------------------------------------------------------------- /cache/i686/debian-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/debian-9.json -------------------------------------------------------------------------------- /cache/i686/debian-experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/debian-experimental.json -------------------------------------------------------------------------------- /cache/i686/debian-testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/debian-testing.json -------------------------------------------------------------------------------- /cache/i686/debian-unstable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/debian-unstable.json -------------------------------------------------------------------------------- /cache/i686/manylinux-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/manylinux-1.json -------------------------------------------------------------------------------- /cache/i686/manylinux-2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/manylinux-2010.json -------------------------------------------------------------------------------- /cache/i686/manylinux-2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/manylinux-2014.json -------------------------------------------------------------------------------- /cache/i686/manylinux-2_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/manylinux-2_24.json -------------------------------------------------------------------------------- /cache/i686/manylinux-2_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/manylinux-2_28.json -------------------------------------------------------------------------------- /cache/i686/manylinux-2_34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/manylinux-2_34.json -------------------------------------------------------------------------------- /cache/i686/opensuse-tumbleweed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/opensuse-tumbleweed.json -------------------------------------------------------------------------------- /cache/i686/ubuntu-14.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/ubuntu-14.04.json -------------------------------------------------------------------------------- /cache/i686/ubuntu-16.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/ubuntu-16.04.json -------------------------------------------------------------------------------- /cache/i686/ubuntu-18.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/i686/ubuntu-18.04.json -------------------------------------------------------------------------------- /cache/loongarch64/anolisos-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/loongarch64/anolisos-23.json -------------------------------------------------------------------------------- /cache/loongarch64/debian-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/loongarch64/debian-13.json -------------------------------------------------------------------------------- /cache/loongarch64/openeuler-24.03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/loongarch64/openeuler-24.03.json -------------------------------------------------------------------------------- /cache/ppc64le/almalinux-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/almalinux-10.json -------------------------------------------------------------------------------- /cache/ppc64le/almalinux-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/almalinux-8.json -------------------------------------------------------------------------------- /cache/ppc64le/almalinux-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/almalinux-9.json -------------------------------------------------------------------------------- /cache/ppc64le/alt-p9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/alt-p9.json -------------------------------------------------------------------------------- /cache/ppc64le/centos-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/centos-7.json -------------------------------------------------------------------------------- /cache/ppc64le/centos-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/centos-8.json -------------------------------------------------------------------------------- /cache/ppc64le/centos-stream10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/centos-stream10.json -------------------------------------------------------------------------------- /cache/ppc64le/centos-stream8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/centos-stream8.json -------------------------------------------------------------------------------- /cache/ppc64le/centos-stream9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/centos-stream9.json -------------------------------------------------------------------------------- /cache/ppc64le/debian-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/debian-10.json -------------------------------------------------------------------------------- /cache/ppc64le/debian-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/debian-11.json -------------------------------------------------------------------------------- /cache/ppc64le/debian-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/debian-12.json -------------------------------------------------------------------------------- /cache/ppc64le/debian-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/debian-13.json -------------------------------------------------------------------------------- /cache/ppc64le/debian-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/debian-9.json -------------------------------------------------------------------------------- /cache/ppc64le/debian-experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/debian-experimental.json -------------------------------------------------------------------------------- /cache/ppc64le/debian-testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/debian-testing.json -------------------------------------------------------------------------------- /cache/ppc64le/debian-unstable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/debian-unstable.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-32.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-33.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-34.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-35.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-36.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-37.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-38.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-39.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-40.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-41.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-42.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-43.json -------------------------------------------------------------------------------- /cache/ppc64le/fedora-rawhide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/fedora-rawhide.json -------------------------------------------------------------------------------- /cache/ppc64le/manylinux-2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/manylinux-2014.json -------------------------------------------------------------------------------- /cache/ppc64le/manylinux-2_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/manylinux-2_24.json -------------------------------------------------------------------------------- /cache/ppc64le/manylinux-2_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/manylinux-2_28.json -------------------------------------------------------------------------------- /cache/ppc64le/manylinux-2_34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/manylinux-2_34.json -------------------------------------------------------------------------------- /cache/ppc64le/opensuse-15.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/opensuse-15.1.json -------------------------------------------------------------------------------- /cache/ppc64le/opensuse-15.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/opensuse-15.2.json -------------------------------------------------------------------------------- /cache/ppc64le/opensuse-15.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/opensuse-15.3.json -------------------------------------------------------------------------------- /cache/ppc64le/opensuse-15.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/opensuse-15.4.json -------------------------------------------------------------------------------- /cache/ppc64le/opensuse-15.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/opensuse-15.5.json -------------------------------------------------------------------------------- /cache/ppc64le/opensuse-16.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/opensuse-16.0.json -------------------------------------------------------------------------------- /cache/ppc64le/opensuse-tumbleweed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/opensuse-tumbleweed.json -------------------------------------------------------------------------------- /cache/ppc64le/rhubi-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/rhubi-10.json -------------------------------------------------------------------------------- /cache/ppc64le/rhubi-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/rhubi-7.json -------------------------------------------------------------------------------- /cache/ppc64le/rhubi-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/rhubi-8.json -------------------------------------------------------------------------------- /cache/ppc64le/rhubi-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/rhubi-9.json -------------------------------------------------------------------------------- /cache/ppc64le/rockylinux-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/rockylinux-10.json -------------------------------------------------------------------------------- /cache/ppc64le/rockylinux-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/rockylinux-9.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-14.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-14.04.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-16.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-16.04.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-18.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-18.04.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-20.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-20.04.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-20.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-20.10.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-21.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-21.04.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-21.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-21.10.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-22.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-22.04.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-22.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-22.10.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-23.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-23.04.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-23.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-23.10.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-24.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-24.04.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-24.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-24.10.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-25.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-25.04.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-25.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-25.10.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-devel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-devel.json -------------------------------------------------------------------------------- /cache/ppc64le/ubuntu-rolling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/ppc64le/ubuntu-rolling.json -------------------------------------------------------------------------------- /cache/riscv64/debian-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/debian-13.json -------------------------------------------------------------------------------- /cache/riscv64/debian-experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/debian-experimental.json -------------------------------------------------------------------------------- /cache/riscv64/debian-testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/debian-testing.json -------------------------------------------------------------------------------- /cache/riscv64/debian-unstable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/debian-unstable.json -------------------------------------------------------------------------------- /cache/riscv64/manylinux-2_39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/manylinux-2_39.json -------------------------------------------------------------------------------- /cache/riscv64/opensuse-tumbleweed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/opensuse-tumbleweed.json -------------------------------------------------------------------------------- /cache/riscv64/rockylinux-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/rockylinux-10.json -------------------------------------------------------------------------------- /cache/riscv64/ubuntu-20.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/ubuntu-20.04.json -------------------------------------------------------------------------------- /cache/riscv64/ubuntu-22.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/ubuntu-22.04.json -------------------------------------------------------------------------------- /cache/riscv64/ubuntu-22.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/ubuntu-22.10.json -------------------------------------------------------------------------------- /cache/riscv64/ubuntu-23.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/ubuntu-23.04.json -------------------------------------------------------------------------------- /cache/riscv64/ubuntu-24.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/ubuntu-24.04.json -------------------------------------------------------------------------------- /cache/riscv64/ubuntu-25.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/ubuntu-25.04.json -------------------------------------------------------------------------------- /cache/riscv64/ubuntu-25.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/ubuntu-25.10.json -------------------------------------------------------------------------------- /cache/riscv64/ubuntu-devel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/ubuntu-devel.json -------------------------------------------------------------------------------- /cache/riscv64/ubuntu-rolling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/riscv64/ubuntu-rolling.json -------------------------------------------------------------------------------- /cache/s390x/almalinux-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/almalinux-10.json -------------------------------------------------------------------------------- /cache/s390x/almalinux-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/almalinux-8.json -------------------------------------------------------------------------------- /cache/s390x/almalinux-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/almalinux-9.json -------------------------------------------------------------------------------- /cache/s390x/centos-stream10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/centos-stream10.json -------------------------------------------------------------------------------- /cache/s390x/centos-stream9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/centos-stream9.json -------------------------------------------------------------------------------- /cache/s390x/clefos-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/clefos-7.json -------------------------------------------------------------------------------- /cache/s390x/debian-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/debian-10.json -------------------------------------------------------------------------------- /cache/s390x/debian-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/debian-11.json -------------------------------------------------------------------------------- /cache/s390x/debian-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/debian-12.json -------------------------------------------------------------------------------- /cache/s390x/debian-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/debian-13.json -------------------------------------------------------------------------------- /cache/s390x/debian-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/debian-9.json -------------------------------------------------------------------------------- /cache/s390x/debian-experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/debian-experimental.json -------------------------------------------------------------------------------- /cache/s390x/debian-testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/debian-testing.json -------------------------------------------------------------------------------- /cache/s390x/debian-unstable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/debian-unstable.json -------------------------------------------------------------------------------- /cache/s390x/fedora-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-32.json -------------------------------------------------------------------------------- /cache/s390x/fedora-33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-33.json -------------------------------------------------------------------------------- /cache/s390x/fedora-34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-34.json -------------------------------------------------------------------------------- /cache/s390x/fedora-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-35.json -------------------------------------------------------------------------------- /cache/s390x/fedora-36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-36.json -------------------------------------------------------------------------------- /cache/s390x/fedora-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-37.json -------------------------------------------------------------------------------- /cache/s390x/fedora-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-38.json -------------------------------------------------------------------------------- /cache/s390x/fedora-39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-39.json -------------------------------------------------------------------------------- /cache/s390x/fedora-40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-40.json -------------------------------------------------------------------------------- /cache/s390x/fedora-41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-41.json -------------------------------------------------------------------------------- /cache/s390x/fedora-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-42.json -------------------------------------------------------------------------------- /cache/s390x/fedora-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-43.json -------------------------------------------------------------------------------- /cache/s390x/fedora-rawhide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/fedora-rawhide.json -------------------------------------------------------------------------------- /cache/s390x/manylinux-2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/manylinux-2014.json -------------------------------------------------------------------------------- /cache/s390x/manylinux-2_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/manylinux-2_24.json -------------------------------------------------------------------------------- /cache/s390x/manylinux-2_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/manylinux-2_28.json -------------------------------------------------------------------------------- /cache/s390x/manylinux-2_34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/manylinux-2_34.json -------------------------------------------------------------------------------- /cache/s390x/opensuse-15.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/opensuse-15.3.json -------------------------------------------------------------------------------- /cache/s390x/opensuse-15.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/opensuse-15.4.json -------------------------------------------------------------------------------- /cache/s390x/opensuse-15.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/opensuse-15.5.json -------------------------------------------------------------------------------- /cache/s390x/opensuse-tumbleweed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/opensuse-tumbleweed.json -------------------------------------------------------------------------------- /cache/s390x/rhubi-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/rhubi-10.json -------------------------------------------------------------------------------- /cache/s390x/rhubi-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/rhubi-7.json -------------------------------------------------------------------------------- /cache/s390x/rhubi-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/rhubi-8.json -------------------------------------------------------------------------------- /cache/s390x/rhubi-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/rhubi-9.json -------------------------------------------------------------------------------- /cache/s390x/rockylinux-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/rockylinux-10.json -------------------------------------------------------------------------------- /cache/s390x/rockylinux-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/rockylinux-9.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-16.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-16.04.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-18.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-18.04.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-20.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-20.04.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-20.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-20.10.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-21.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-21.04.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-21.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-21.10.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-22.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-22.04.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-22.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-22.10.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-23.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-23.04.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-23.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-23.10.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-24.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-24.04.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-24.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-24.10.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-25.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-25.04.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-25.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-25.10.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-devel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-devel.json -------------------------------------------------------------------------------- /cache/s390x/ubuntu-rolling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/s390x/ubuntu-rolling.json -------------------------------------------------------------------------------- /cache/x86_64/almalinux-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/almalinux-10.json -------------------------------------------------------------------------------- /cache/x86_64/almalinux-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/almalinux-8.json -------------------------------------------------------------------------------- /cache/x86_64/almalinux-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/almalinux-9.json -------------------------------------------------------------------------------- /cache/x86_64/alt-p10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/alt-p10.json -------------------------------------------------------------------------------- /cache/x86_64/alt-p11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/alt-p11.json -------------------------------------------------------------------------------- /cache/x86_64/alt-p8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/alt-p8.json -------------------------------------------------------------------------------- /cache/x86_64/alt-p9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/alt-p9.json -------------------------------------------------------------------------------- /cache/x86_64/alt-sisyphus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/alt-sisyphus.json -------------------------------------------------------------------------------- /cache/x86_64/amazonlinux-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/amazonlinux-1.json -------------------------------------------------------------------------------- /cache/x86_64/amazonlinux-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/amazonlinux-2.json -------------------------------------------------------------------------------- /cache/x86_64/amazonlinux-2023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/amazonlinux-2023.json -------------------------------------------------------------------------------- /cache/x86_64/anolisos-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/anolisos-23.json -------------------------------------------------------------------------------- /cache/x86_64/anolisos-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/anolisos-8.json -------------------------------------------------------------------------------- /cache/x86_64/archlinux-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/archlinux-latest.json -------------------------------------------------------------------------------- /cache/x86_64/centos-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/centos-7.json -------------------------------------------------------------------------------- /cache/x86_64/centos-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/centos-8.json -------------------------------------------------------------------------------- /cache/x86_64/centos-stream10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/centos-stream10.json -------------------------------------------------------------------------------- /cache/x86_64/centos-stream8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/centos-stream8.json -------------------------------------------------------------------------------- /cache/x86_64/centos-stream9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/centos-stream9.json -------------------------------------------------------------------------------- /cache/x86_64/debian-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/debian-10.json -------------------------------------------------------------------------------- /cache/x86_64/debian-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/debian-11.json -------------------------------------------------------------------------------- /cache/x86_64/debian-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/debian-12.json -------------------------------------------------------------------------------- /cache/x86_64/debian-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/debian-13.json -------------------------------------------------------------------------------- /cache/x86_64/debian-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/debian-8.json -------------------------------------------------------------------------------- /cache/x86_64/debian-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/debian-9.json -------------------------------------------------------------------------------- /cache/x86_64/debian-experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/debian-experimental.json -------------------------------------------------------------------------------- /cache/x86_64/debian-testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/debian-testing.json -------------------------------------------------------------------------------- /cache/x86_64/debian-unstable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/debian-unstable.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-32.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-33.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-34.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-35.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-36.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-37.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-38.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-39.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-40.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-41.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-42.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-43.json -------------------------------------------------------------------------------- /cache/x86_64/fedora-rawhide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/fedora-rawhide.json -------------------------------------------------------------------------------- /cache/x86_64/mageia-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/mageia-7.json -------------------------------------------------------------------------------- /cache/x86_64/mageia-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/mageia-8.json -------------------------------------------------------------------------------- /cache/x86_64/mageia-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/mageia-9.json -------------------------------------------------------------------------------- /cache/x86_64/mageia-cauldron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/mageia-cauldron.json -------------------------------------------------------------------------------- /cache/x86_64/manylinux-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/manylinux-1.json -------------------------------------------------------------------------------- /cache/x86_64/manylinux-2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/manylinux-2010.json -------------------------------------------------------------------------------- /cache/x86_64/manylinux-2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/manylinux-2014.json -------------------------------------------------------------------------------- /cache/x86_64/manylinux-2_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/manylinux-2_24.json -------------------------------------------------------------------------------- /cache/x86_64/manylinux-2_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/manylinux-2_28.json -------------------------------------------------------------------------------- /cache/x86_64/manylinux-2_34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/manylinux-2_34.json -------------------------------------------------------------------------------- /cache/x86_64/opencloudos-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/opencloudos-8.json -------------------------------------------------------------------------------- /cache/x86_64/opencloudos-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/opencloudos-9.json -------------------------------------------------------------------------------- /cache/x86_64/openeuler-24.03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/openeuler-24.03.json -------------------------------------------------------------------------------- /cache/x86_64/opensuse-15.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/opensuse-15.1.json -------------------------------------------------------------------------------- /cache/x86_64/opensuse-15.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/opensuse-15.2.json -------------------------------------------------------------------------------- /cache/x86_64/opensuse-15.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/opensuse-15.3.json -------------------------------------------------------------------------------- /cache/x86_64/opensuse-15.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/opensuse-15.4.json -------------------------------------------------------------------------------- /cache/x86_64/opensuse-15.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/opensuse-15.5.json -------------------------------------------------------------------------------- /cache/x86_64/opensuse-15.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/opensuse-15.6.json -------------------------------------------------------------------------------- /cache/x86_64/opensuse-16.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/opensuse-16.0.json -------------------------------------------------------------------------------- /cache/x86_64/opensuse-tumbleweed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/opensuse-tumbleweed.json -------------------------------------------------------------------------------- /cache/x86_64/oraclelinux-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/oraclelinux-10.json -------------------------------------------------------------------------------- /cache/x86_64/oraclelinux-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/oraclelinux-6.json -------------------------------------------------------------------------------- /cache/x86_64/oraclelinux-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/oraclelinux-7.json -------------------------------------------------------------------------------- /cache/x86_64/oraclelinux-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/oraclelinux-8.json -------------------------------------------------------------------------------- /cache/x86_64/oraclelinux-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/oraclelinux-9.json -------------------------------------------------------------------------------- /cache/x86_64/photon-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/photon-1.0.json -------------------------------------------------------------------------------- /cache/x86_64/photon-2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/photon-2.0.json -------------------------------------------------------------------------------- /cache/x86_64/photon-3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/photon-3.0.json -------------------------------------------------------------------------------- /cache/x86_64/photon-4.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/photon-4.0.json -------------------------------------------------------------------------------- /cache/x86_64/photon-5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/photon-5.0.json -------------------------------------------------------------------------------- /cache/x86_64/rhubi-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/rhubi-10.json -------------------------------------------------------------------------------- /cache/x86_64/rhubi-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/rhubi-7.json -------------------------------------------------------------------------------- /cache/x86_64/rhubi-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/rhubi-8.json -------------------------------------------------------------------------------- /cache/x86_64/rhubi-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/rhubi-9.json -------------------------------------------------------------------------------- /cache/x86_64/rockylinux-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/rockylinux-10.json -------------------------------------------------------------------------------- /cache/x86_64/rockylinux-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/rockylinux-8.json -------------------------------------------------------------------------------- /cache/x86_64/rockylinux-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/rockylinux-9.json -------------------------------------------------------------------------------- /cache/x86_64/slackware-14.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/slackware-14.0.json -------------------------------------------------------------------------------- /cache/x86_64/slackware-14.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/slackware-14.1.json -------------------------------------------------------------------------------- /cache/x86_64/slackware-14.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/slackware-14.2.json -------------------------------------------------------------------------------- /cache/x86_64/slackware-15.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/slackware-15.0.json -------------------------------------------------------------------------------- /cache/x86_64/slackware-current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/slackware-current.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-14.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-14.04.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-16.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-16.04.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-18.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-18.04.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-20.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-20.04.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-20.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-20.10.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-21.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-21.04.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-21.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-21.10.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-22.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-22.04.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-22.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-22.10.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-23.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-23.04.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-23.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-23.10.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-24.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-24.04.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-24.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-24.10.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-25.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-25.04.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-25.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-25.10.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-devel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-devel.json -------------------------------------------------------------------------------- /cache/x86_64/ubuntu-rolling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/cache/x86_64/ubuntu-rolling.json -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/noxfile.py -------------------------------------------------------------------------------- /pep600_compliance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pep600_compliance/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/__main__.py -------------------------------------------------------------------------------- /pep600_compliance/images/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/__init__.py -------------------------------------------------------------------------------- /pep600_compliance/images/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/base.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pep600_compliance/images/os/almalinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/almalinux.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/alt.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/amazonlinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/amazonlinux.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/anolisos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/anolisos.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/archlinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/archlinux.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/centos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/centos.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/clefos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/clefos.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/debian.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/fedora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/fedora.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/mageia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/mageia.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/manylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/manylinux.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/opencloudos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/opencloudos.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/openeuler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/openeuler.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/opensuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/opensuse.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/oraclelinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/oraclelinux.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/photon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/photon.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/rhubi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/rhubi.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/rockylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/rockylinux.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/slackware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/slackware.py -------------------------------------------------------------------------------- /pep600_compliance/images/os/ubuntu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/os/ubuntu.py -------------------------------------------------------------------------------- /pep600_compliance/images/package_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/images/package_manager.py -------------------------------------------------------------------------------- /pep600_compliance/make_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/make_policies.py -------------------------------------------------------------------------------- /pep600_compliance/policies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/policies/__init__.py -------------------------------------------------------------------------------- /pep600_compliance/policies/manylinux-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/policies/manylinux-policy.json -------------------------------------------------------------------------------- /pep600_compliance/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pep600_compliance/tools/calculate_symbol_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/tools/calculate_symbol_versions.py -------------------------------------------------------------------------------- /pep600_compliance/tools/ldd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pep600_compliance/tools/ldd.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- 1 | docker 2 | pyelftools 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeut/pep600_compliance/HEAD/requirements.txt --------------------------------------------------------------------------------