{"id":5897591,"name":"pypa/cibuildwheel","ecosystem":"actions","description":"Installs and runs cibuildwheel on the current runner","homepage":"https://cibuildwheel.pypa.io","licenses":"bsd-2-clause","normalized_licenses":["BSD-2-Clause"],"repository_url":"https://github.com/pypa/cibuildwheel","keywords_array":["appveyor","azure-pipelines","build-automation","ci","circleci","github-actions","pypi","python","python-wheels","travis-ci","wheel"],"namespace":"pypa","versions_count":174,"first_release_published_at":"2017-03-19T21:56:35.000Z","latest_release_published_at":"2026-08-05T02:23:12.000Z","latest_release_number":"v4.2.0","last_synced_at":"2026-08-15T22:11:12.280Z","created_at":"2023-01-18T01:33:13.826Z","updated_at":"2026-08-15T22:11:12.281Z","registry_url":"https://github.com/pypa/cibuildwheel","install_command":null,"documentation_url":null,"metadata":{"name":"cibuildwheel","description":"Installs and runs cibuildwheel on the current runner","inputs":{"package-dir":{"description":"Input directory, defaults to \".\"","required":false,"default":"."},"output-dir":{"description":"Folder to place the outputs in, defaults to \"wheelhouse\"","required":false,"default":"wheelhouse"},"config-file":{"description":"File containing the config, defaults to {package}/pyproject.toml","required":false,"default":""},"only":{"description":"Build a specific wheel only. No need for arch/platform if this is set","required":false,"default":""},"extras":{"description":"Comma-separated list of extras to install","required":false,"default":""}},"branding":{"icon":"package","color":"yellow"},"runs":{"using":"composite","steps":[{"uses":"actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97","id":"python","with":{"python-version":"3.11 - 3.14","update-environment":false}},{"id":"cibw","run":"# Install cibuildwheel and build the command line\n\"$PYTHON\" -u \u003c\u003c \"EOF\"\nimport os\nimport shlex\nimport shutil\nimport sys\nimport venv\n\nfrom pathlib import Path\nfrom subprocess import run\n\nEXTRAS = set(e.strip() for e in os.environ.get(\"INPUT_EXTRAS\", \"\").split(\",\") if e.strip())\n\n\nclass EnvBuilder(venv.EnvBuilder):\n    def __init__(self):\n        super().__init__()\n\n    def setup_scripts(self, context):\n        pass\n\n    def post_setup(self, context):\n        super().post_setup(context)\n        self.bin_path = Path(context.env_exe).parent\n        install_spec = os.environ[\"GITHUB_ACTION_PATH\"]\n        if EXTRAS:\n            install_spec += f\"[{','.join(sorted(EXTRAS))}]\"\n        run([sys.executable, \"-m\", \"pip\", \"--python\", context.env_exe, \"install\", install_spec], check=True)\n\n\nprint(\"::group::Install cibuildwheel\")\nvenv_path = Path(os.environ[\"RUNNER_TEMP\"]) / \"cibw\"\nif venv_path.exists():\n    shutil.rmtree(venv_path)\n\nbuilder = EnvBuilder()\nbuilder.create(venv_path)\nexposed_binaries = {\"cibuildwheel\"}\n\nif \"uv\" in EXTRAS:\n    exposed_binaries.add(\"uv\")\nclean_bin_path = builder.bin_path.parent / f\"{builder.bin_path.name}.clean\"\nclean_bin_path.mkdir()\n\nfor path in list(builder.bin_path.iterdir()):\n    if path.stem in exposed_binaries:\n        try:\n            os.symlink(path, clean_bin_path / path.name)\n        except OSError:\n            shutil.copy2(path, clean_bin_path / path.name)\n\ncibw_bin = [p for p in builder.bin_path.glob(\"cibuildwheel*\") if p.stem == \"cibuildwheel\"][0]\n\n# Build the command line\ncmd_args = [str(cibw_bin), os.environ[\"INPUT_PACKAGE_DIR\"]]\n\nif output_dir := os.environ.get(\"INPUT_OUTPUT_DIR\"):\n    cmd_args += [\"--output-dir\", output_dir]\n\nif config_file := os.environ.get(\"INPUT_CONFIG_FILE\"):\n    cmd_args += [\"--config-file\", config_file]\n\nif only := os.environ.get(\"INPUT_ONLY\"):\n    cmd_args += [\"--only\", only]\n\ncmd_bash = shlex.join(cmd_args)\n\ndef pwsh_quote(text):\n    # Wrap in single quotes and double-up any existing single quotes\n    return \"'\" + str(text).replace(\"'\", \"''\") + \"'\"\n\n# Prepend '\u0026 ' so PowerShell executes the quoted binary path\ncmd_pwsh = \"\u0026 \" + \" \".join(pwsh_quote(arg) for arg in cmd_args)\n\nwith open(os.environ[\"GITHUB_OUTPUT\"], \"at\") as f:\n    f.write(f\"prepend-path={clean_bin_path}\\n\")\n    f.write(f\"cmd-bash={cmd_bash}\\n\")\n    f.write(f\"cmd-pwsh={cmd_pwsh}\\n\")\n\nprint(\"::endgroup::\")\nEOF\n","shell":"bash","env":{"PYTHON":"${{ steps.python.outputs.python-path }}","INPUT_PACKAGE_DIR":"${{ inputs.package-dir }}","INPUT_OUTPUT_DIR":"${{ inputs.output-dir }}","INPUT_CONFIG_FILE":"${{ inputs.config-file }}","INPUT_ONLY":"${{ inputs.only }}","INPUT_EXTRAS":"${{ inputs.extras }}"}},{"run":"export PATH=\"$CIBW_PREPEND_PATH:$PATH\"\neval \"$CIBW_CMD_BASH\" 2\u003e\u00261\n","shell":"bash","if":"runner.os != 'Windows'","env":{"CIBW_PREPEND_PATH":"${{ steps.cibw.outputs.prepend-path }}","CIBW_CMD_BASH":"${{ steps.cibw.outputs.cmd-bash }}"}},{"run":"$env:PATH = \"$env:CIBW_PREPEND_PATH;$env:PATH\"\nInvoke-Expression $env:CIBW_CMD_PWSH\n","shell":"pwsh","if":"runner.os == 'Windows'","env":{"CIBW_PREPEND_PATH":"${{ steps.cibw.outputs.prepend-path }}","CIBW_CMD_PWSH":"${{ steps.cibw.outputs.cmd-pwsh }}"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":36968346,"uuid":"85508223","full_name":"pypa/cibuildwheel","owner":"pypa","description":"🎡 Build Python wheels for all the platforms with minimal configuration. ","archived":false,"fork":false,"pushed_at":"2026-08-09T08:09:29.000Z","size":8546,"stargazers_count":2253,"open_issues_count":71,"forks_count":320,"subscribers_count":25,"default_branch":"main","last_synced_at":"2026-08-09T13:49:28.490Z","etag":null,"topics":["appveyor","azure-pipelines","build-automation","ci","circleci","github-actions","pypi","python","python-wheels","travis-ci","wheel"],"latest_commit_sha":null,"homepage":"https://cibuildwheel.pypa.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pypa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","claude":null,"gemini":null,"cursor":null,"copilot":null,"dco":null,"cla":null,"disclosure":null}},"created_at":"2017-03-19T20:59:00.000Z","updated_at":"2026-08-09T08:09:33.000Z","dependencies_parsed_at":"2026-08-09T13:59:33.376Z","dependency_job_id":null,"html_url":"https://github.com/pypa/cibuildwheel","commit_stats":{"total_commits":2513,"total_committers":141,"mean_commits":"17.822695035460992","dds":0.6020692399522483,"last_synced_commit":"311f64987b902c5245b895fe5446f3a0ba8e3c0d"},"previous_names":["joerick/cibuildwheel"],"tags_count":175,"template":false,"template_full_name":null,"purl":"pkg:github/pypa/cibuildwheel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pypa","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/sbom","scorecard":{"id":496453,"data":{"date":"2025-08-11","repo":{"name":"github.com/pypa/cibuildwheel","commit":"68f97626576584c57f696e9c3ed3c5607222366e"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":5.6,"checks":[{"name":"Code-Review","score":7,"reason":"Found 19/24 approved changesets -- score normalized to 7","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Maintained","score":10,"reason":"30 commit(s) and 7 issue activity found in the last 90 days -- score normalized to 10","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/release.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:30: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:40: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/release.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:240: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:241: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test.yml:244: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test.yml:249: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:260: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:261: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test.yml:265: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:40: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:41: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test.yml:45: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:90: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:91: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test.yml:97: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test.yml:119: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test.yml:125: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:201: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:217: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:218: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test.yml:221: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/update-dependencies.yml:26: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/update-dependencies.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/update-dependencies.yml:33: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/update-dependencies.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/update-dependencies.yml:35: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/update-dependencies.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/update-dependencies.yml:46: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/update-dependencies.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/update-major-minor-tag.yml:24: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/update-major-minor-tag.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/update-major-minor-tag.yml:28: update your workflow using https://app.stepsecurity.io/secureworkflow/pypa/cibuildwheel/update-major-minor-tag.yml/main?enable=pin","Warn: pipCommand not pinned by hash: .circleci/prepare.sh:13","Warn: pipCommand not pinned by hash: .circleci/prepare.sh:14","Info:   1 out of  17 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of  13 third-party GitHubAction dependencies pinned","Info:   0 out of   2 pipCommand dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: jobLevel 'contents' permission set to 'write': .github/workflows/update-major-minor-tag.yml:22","Warn: no topLevel permission defined: .github/workflows/release.yml:1","Warn: no topLevel permission defined: .github/workflows/test.yml:1","Warn: no topLevel permission defined: .github/workflows/update-dependencies.yml:1","Warn: no topLevel permission defined: .github/workflows/update-major-minor-tag.yml:1"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"License","score":9,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Warn: project license file does not contain an FSF or OSI license."],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Branch-Protection","score":3,"reason":"branch protection is not maximal on development and all release branches","details":["Info: 'allow deletion' disabled on branch 'main'","Info: 'force pushes' disabled on branch 'main'","Info: 'branch protection settings apply to administrators' is required to merge on branch 'main'","Warn: branch 'main' does not require approvers","Warn: codeowners review is not required on branch 'main'","Warn: no status checks found to merge onto branch 'main'","Warn: PRs are not required to make changes on branch 'main'; or we don't have data to detect it.If you think it might be the latter, make sure to run Scorecard with a PAT or use Repo Rules (that are always public) instead of Branch Protection settings"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"Packaging","score":10,"reason":"packaging workflow detected","details":["Info: Project packages its releases by way of GitHub Actions.: .github/workflows/release.yml:18"],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 28 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}}]},"last_synced_at":"2025-08-19T20:31:50.249Z","repository_id":36968346,"created_at":"2025-08-19T20:31:50.249Z","updated_at":"2025-08-19T20:31:50.249Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":36462642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-08-06T04:43:03.162Z","status":"online","status_checked_at":"2026-08-09T02:00:06.528Z","response_time":130,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"pypa","name":"Python Packaging Authority","uuid":"647025","kind":"organization","description":"","email":"info@pypa.io","website":"https://www.pypa.io","location":"United States of America","twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/647025?v=4","repositories_count":59,"last_synced_at":"2026-08-08T06:20:57.231Z","metadata":{"has_sponsors_listing":true,"funding":null},"html_url":"https://github.com/pypa","funding_links":["https://github.com/sponsors/pypa"],"total_stars":91361,"followers":2400,"following":0,"created_at":"2022-11-02T16:21:37.826Z","updated_at":"2026-08-08T06:20:57.280Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pypa","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pypa/repositories"},"tags":[{"name":"v4.2","sha":"1828c10ab37f080699c7b81cea34097c684a7074","kind":"commit","published_at":"2026-08-05T02:23:12.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v4.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v4.2","dependencies_parsed_at":"2026-08-08T13:26:14.216Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.2/manifests"},{"name":"v4.2.0","sha":"1828c10ab37f080699c7b81cea34097c684a7074","kind":"commit","published_at":"2026-08-05T02:23:12.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v4.2.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v4.2.0","dependencies_parsed_at":"2026-08-08T13:26:14.053Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v4.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.2.0/manifests"},{"name":"v4.1.1","sha":"4726cd35bb13f7bde50cf2761f2499ac7b3aa32c","kind":"commit","published_at":"2026-07-24T20:31:06.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v4.1.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v4.1.1","dependencies_parsed_at":"2026-08-08T13:26:14.049Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v4.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.1.1/manifests"},{"name":"v4.1.0","sha":"294735312765b09d24a2fbec22660ce817587d55","kind":"tag","published_at":"2026-06-12T16:02:23.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v4.1.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v4.1.0","dependencies_parsed_at":"2026-08-08T13:26:13.922Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v4.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.1.0/manifests"},{"name":"v4.1","sha":"294735312765b09d24a2fbec22660ce817587d55","kind":"tag","published_at":"2026-06-12T16:02:23.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v4.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v4.1","dependencies_parsed_at":"2026-08-08T13:26:14.250Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.1/manifests"},{"name":"v4.0.0","sha":"f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d","kind":"commit","published_at":"2026-06-07T18:53:57.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v4.0.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v4.0.0","dependencies_parsed_at":"2026-08-08T13:26:14.129Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v4.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.0.0/manifests"},{"name":"v4.0","sha":"f03ac7617d6cff873ccf24cc0d567ef5ba5a9e6d","kind":"commit","published_at":"2026-06-07T18:53:57.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v4.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v4.0","dependencies_parsed_at":"2026-08-08T13:26:14.122Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.0/manifests"},{"name":"v4.0.0rc2","sha":"f6bd0477ccc60aa8a7a89b8c1eee6bbbd3fe0dbb","kind":"commit","published_at":"2026-06-05T13:26:48.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v4.0.0rc2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v4.0.0rc2","dependencies_parsed_at":"2026-08-08T13:26:14.384Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v4.0.0rc2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.0.0rc2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.0.0rc2/manifests"},{"name":"v4.0.0rc1","sha":"54327ab9d35de03b359ac25c97de9417d94639c0","kind":"commit","published_at":"2026-05-14T15:58:13.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v4.0.0rc1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v4.0.0rc1","dependencies_parsed_at":"2026-08-08T13:26:14.432Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v4.0.0rc1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.0.0rc1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v4.0.0rc1/manifests"},{"name":"v3.4.1","sha":"8d2b08b68458a16aeb24b64e68a09ab1c8e82084","kind":"tag","published_at":"2026-04-02T13:57:46.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.4.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.4.1","dependencies_parsed_at":"2026-08-08T13:26:14.379Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.4.1/manifests"},{"name":"v2.23.4","sha":"e5486e0b831d3a4954f271c2a053fbbc0e227d6a","kind":"tag","published_at":"2026-03-16T19:31:55.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.23.4","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.23.4","dependencies_parsed_at":"2026-08-08T13:26:14.300Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.23.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23.4/manifests"},{"name":"v3.4.0","sha":"ee02a1537ce3071a004a6b08c41e72f0fdc42d9a","kind":"tag","published_at":"2026-03-05T09:00:39.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.4.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.4.0","dependencies_parsed_at":"2026-08-08T13:26:14.643Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.4.0/manifests"},{"name":"v3.4","sha":"ee02a1537ce3071a004a6b08c41e72f0fdc42d9a","kind":"tag","published_at":"2026-03-05T09:00:39.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.4","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.4","dependencies_parsed_at":"2026-08-08T13:26:14.613Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.4/manifests"},{"name":"v3.3.1","sha":"298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e","kind":"tag","published_at":"2026-01-05T19:57:04.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.3.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.3.1","dependencies_parsed_at":"2026-08-08T13:26:14.664Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.3.1/manifests"},{"name":"v3.3","sha":"63fd63b352a9a8bdcc24791c9dbee952ee9a8abc","kind":"tag","published_at":"2025-11-12T19:27:52.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.3","dependencies_parsed_at":"2026-08-08T13:26:14.732Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.3/manifests"},{"name":"v3.3.0","sha":"63fd63b352a9a8bdcc24791c9dbee952ee9a8abc","kind":"tag","published_at":"2025-11-12T19:27:52.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.3.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.3.0","dependencies_parsed_at":"2026-08-08T13:26:14.819Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.3.0/manifests"},{"name":"v3.2.1","sha":"9c00cb4f6b517705a3794b22395aedc36257242c","kind":"tag","published_at":"2025-10-12T08:23:53.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.2.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.2.1","dependencies_parsed_at":"2025-10-15T08:14:19.696Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.2.1/manifests"},{"name":"v3.2.0","sha":"7c619efba910c04005a835b110b057fc28fd6e93","kind":"tag","published_at":"2025-09-22T20:44:41.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.2.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.2.0","dependencies_parsed_at":"2025-10-15T08:14:19.721Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.2.0/manifests"},{"name":"v3.2","sha":"7c619efba910c04005a835b110b057fc28fd6e93","kind":"tag","published_at":"2025-09-22T20:44:41.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.2","dependencies_parsed_at":"2025-10-15T08:14:19.712Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.2/manifests"},{"name":"v3.1.4","sha":"c923d83ad9c1bc00211c5041d0c3f73294ff88f6","kind":"tag","published_at":"2025-08-19T18:16:52.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.1.4","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.1.4","dependencies_parsed_at":"2025-08-24T14:10:24.111Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.1.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1.4/manifests"},{"name":"v3.1.3","sha":"352e01339f0a173aa2a3eb57f01492e341e83865","kind":"tag","published_at":"2025-08-01T16:38:46.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.1.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.1.3","dependencies_parsed_at":"2025-08-06T04:27:09.929Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1.3/manifests"},{"name":"v3.1.2","sha":"9e4e50bd76b3190f55304387e333f6234823ea9b","kind":"tag","published_at":"2025-07-29T15:12:51.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.1.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.1.2","dependencies_parsed_at":"2025-08-03T04:27:14.923Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1.2/manifests"},{"name":"v3.1.1","sha":"e6de07ed3921b51089aae6981989889cf1eddd0c","kind":"tag","published_at":"2025-07-24T18:14:23.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.1.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.1.1","dependencies_parsed_at":"2025-07-25T10:13:10.533Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1.1/manifests"},{"name":"v3.1.0","sha":"ffd835cef18fa11522f608fc0fa973b89f5ddc87","kind":"tag","published_at":"2025-07-24T03:23:06.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.1.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.1.0","dependencies_parsed_at":"2025-07-25T05:07:50.724Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1.0/manifests"},{"name":"v3.1","sha":"ffd835cef18fa11522f608fc0fa973b89f5ddc87","kind":"tag","published_at":"2025-07-24T03:23:06.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.1","dependencies_parsed_at":"2025-07-25T05:07:50.724Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.1/manifests"},{"name":"v3.0.1","sha":"95d2f3a92fbf80abe066b09418bbf128a8923df2","kind":"tag","published_at":"2025-07-05T18:03:57.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.0.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.0.1","dependencies_parsed_at":"2025-07-07T04:20:48.560Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.1/manifests"},{"name":"v3.0.0","sha":"5f22145df44122af0f5a201f93cf0207171beca7","kind":"tag","published_at":"2025-06-11T13:03:01.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.0.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.0.0","dependencies_parsed_at":"2025-06-12T06:36:17.039Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0/manifests"},{"name":"v3.0","sha":"5f22145df44122af0f5a201f93cf0207171beca7","kind":"tag","published_at":"2025-06-11T13:03:01.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.0","dependencies_parsed_at":"2025-06-12T06:36:16.929Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0/manifests"},{"name":"v3.0.0rc3","sha":"3c5ff0988806752c5a6502c845f9edc2d98095d6","kind":"tag","published_at":"2025-06-11T04:57:01.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.0.0rc3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.0.0rc3","dependencies_parsed_at":"2025-06-12T04:56:55.408Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.0.0rc3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0rc3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0rc3/manifests"},{"name":"v3.0.0rc2","sha":"2edf5784998b7b1ab70445baced23069e839541e","kind":"tag","published_at":"2025-06-06T04:05:23.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.0.0rc2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.0.0rc2","dependencies_parsed_at":"2025-06-08T04:10:41.428Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.0.0rc2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0rc2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0rc2/manifests"},{"name":"v3.0.0rc1","sha":"31f536bdf347750243cca094ffc12035161d2108","kind":"tag","published_at":"2025-06-05T11:39:33.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.0.0rc1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.0.0rc1","dependencies_parsed_at":"2025-06-08T04:10:41.423Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.0.0rc1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0rc1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0rc1/manifests"},{"name":"v3.0.0b5","sha":"a76b6fc3389d0e1f98cb11e56df7e0f5f0ddcccb","kind":"tag","published_at":"2025-06-03T06:49:08.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.0.0b5","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.0.0b5","dependencies_parsed_at":"2025-06-06T04:24:28.965Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.0.0b5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0b5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0b5/manifests"},{"name":"v3.0.0b4","sha":"cf078b0954f3fd08b8445a7bf2c3fb83ab3bb971","kind":"tag","published_at":"2025-05-29T04:27:20.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.0.0b4","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.0.0b4","dependencies_parsed_at":"2025-05-31T04:09:41.159Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.0.0b4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0b4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0b4/manifests"},{"name":"v3.0.0b3","sha":"c41b47f7c2464ff7945b34e211ddc4b89f423a45","kind":"tag","published_at":"2025-05-28T19:07:40.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.0.0b3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.0.0b3","dependencies_parsed_at":"2025-05-31T04:09:41.160Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.0.0b3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0b3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0b3/manifests"},{"name":"v3.0.0b2","sha":"dded469d60a95bc989b3dc6bd965103d9227e2fa","kind":"tag","published_at":"2025-05-25T12:02:17.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.0.0b2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.0.0b2","dependencies_parsed_at":"2025-05-27T04:12:28.572Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.0.0b2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0b2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0b2/manifests"},{"name":"v3.0.0b1","sha":"90a0ddeff0f23eebc21630e65d66d0f4955e9b94","kind":"tag","published_at":"2025-05-19T08:29:16.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v3.0.0b1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v3.0.0b1","dependencies_parsed_at":"2025-05-24T04:59:59.326Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v3.0.0b1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0b1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v3.0.0b1/manifests"},{"name":"v2.23.3","sha":"faf86a6ed7efa889faf6996aa23820831055001a","kind":"tag","published_at":"2025-04-26T10:39:28.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.23.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.23.3","dependencies_parsed_at":"2026-08-08T13:26:14.792Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.23.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23.3/manifests"},{"name":"v2.23.2","sha":"d04cacbc9866d432033b1d09142936e6a0e2121a","kind":"tag","published_at":"2025-03-24T21:25:52.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.23.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.23.2","dependencies_parsed_at":"2025-04-14T04:11:06.242Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.23.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23.2/manifests"},{"name":"v2.23.1","sha":"42728e866bbc80d544a70825bd9990b9a26f1a50","kind":"tag","published_at":"2025-03-15T17:58:16.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.23.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.23.1","dependencies_parsed_at":"2025-04-14T04:11:06.250Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.23.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23.1/manifests"},{"name":"v2.23","sha":"42728e866bbc80d544a70825bd9990b9a26f1a50","kind":"tag","published_at":"2025-03-15T17:58:16.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.23","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.23","dependencies_parsed_at":"2025-04-14T04:11:06.236Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.23","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23/manifests"},{"name":"v2.23.0","sha":"6cccd09a31908ffd175b012fb8bf4e1dbda3bc6c","kind":"tag","published_at":"2025-03-01T13:28:03.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.23.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.23.0","dependencies_parsed_at":"2025-04-14T04:11:06.241Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.23.0/manifests"},{"name":"v2.22","sha":"ee63bf16da6cddfb925f542f2c7b59ad50e93969","kind":"tag","published_at":"2024-11-23T06:44:19.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.22","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.22","dependencies_parsed_at":"2024-11-25T04:25:34.197Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.22","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.22/manifests"},{"name":"v2.22.0","sha":"ee63bf16da6cddfb925f542f2c7b59ad50e93969","kind":"tag","published_at":"2024-11-23T06:44:19.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.22.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.22.0","dependencies_parsed_at":"2024-11-25T04:25:34.179Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.22.0/manifests"},{"name":"v2.22","sha":"ee63bf16da6cddfb925f542f2c7b59ad50e93969","kind":"tag","published_at":"2024-11-23T06:44:19.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.22","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.22","dependencies_parsed_at":"2024-11-25T04:25:34.189Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.22","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.22/manifests"},{"name":"v2.21.3","sha":"7940a4c0e76eb2030e473a5f864f291f63ee879b","kind":"tag","published_at":"2024-10-09T08:04:55.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.21.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.21.3","dependencies_parsed_at":"2024-10-11T04:19:40.166Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.21.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.21.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.21.3/manifests"},{"name":"v2.21.2","sha":"f1859528322d7b29d4493ee241a167807661dfb4","kind":"tag","published_at":"2024-10-02T21:51:56.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.21.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.21.2","dependencies_parsed_at":"2024-10-04T04:25:08.595Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.21.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.21.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.21.2/manifests"},{"name":"v2.21.1","sha":"d4a2945fcc8d13f20a1b99d461b8e844d5fc6e23","kind":"tag","published_at":"2024-09-17T01:04:55.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.21.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.21.1","dependencies_parsed_at":"2024-09-18T04:27:10.333Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.21.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.21.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.21.1/manifests"},{"name":"v2.21.0","sha":"79b0dd328794e1180a7268444d46cdf12e1abd01","kind":"tag","published_at":"2024-09-13T15:42:59.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.21.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.21.0","dependencies_parsed_at":"2024-09-15T04:23:04.704Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.21.0/manifests"},{"name":"v2.21","sha":"79b0dd328794e1180a7268444d46cdf12e1abd01","kind":"tag","published_at":"2024-09-13T15:42:59.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.21","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.21","dependencies_parsed_at":"2024-09-15T04:23:04.703Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.21","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.21","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.21/manifests"},{"name":"v2.20.0","sha":"bd033a44476646b606efccdd5eed92d5ea1d77ad","kind":"tag","published_at":"2024-08-04T02:38:31.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.20.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.20.0","dependencies_parsed_at":"2024-08-11T05:37:13.656Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.20.0/manifests"},{"name":"v2.20","sha":"bd033a44476646b606efccdd5eed92d5ea1d77ad","kind":"tag","published_at":"2024-08-04T02:38:31.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.20","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.20","dependencies_parsed_at":"2024-08-11T05:37:14.328Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.20","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.20/manifests"},{"name":"v2.19.2","sha":"7e5a838a63ac8128d71ab2dfd99e4634dd1bca09","kind":"tag","published_at":"2024-07-02T12:08:01.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.19.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.19.2","dependencies_parsed_at":"2024-10-30T04:48:41.009Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.19.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.19.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.19.2/manifests"},{"name":"v2.19.1","sha":"932529cab190fafca8c735a551657247fa8f8eaf","kind":"tag","published_at":"2024-06-13T06:38:31.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.19.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.19.1","dependencies_parsed_at":"2024-06-17T08:36:31.161Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.19.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.19.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.19.1/manifests"},{"name":"v2.19.0","sha":"a8d190a111314a07eb5116036c4b3fb26a4e3162","kind":"tag","published_at":"2024-06-10T15:28:32.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.19.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.19.0","dependencies_parsed_at":"2024-06-12T06:30:09.410Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.19.0/manifests"},{"name":"v2.19","sha":"a8d190a111314a07eb5116036c4b3fb26a4e3162","kind":"commit","published_at":"2024-06-10T15:28:29.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.19","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.19","dependencies_parsed_at":"2024-06-12T06:30:11.758Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.19","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.19/manifests"},{"name":"v2.18.1","sha":"ba8be0d98853f5744f24e7f902c8adef7ae2e7f3","kind":"tag","published_at":"2024-05-20T11:22:35.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.18.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.18.1","dependencies_parsed_at":"2024-05-22T04:10:32.056Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.18.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.18.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.18.1/manifests"},{"name":"v2.18.0","sha":"711a3d017d0729f3edde18545fee967f03d65f65","kind":"tag","published_at":"2024-05-12T04:13:15.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.18.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.18.0","dependencies_parsed_at":"2024-05-14T04:12:34.257Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.18.0/manifests"},{"name":"v2.18","sha":"711a3d017d0729f3edde18545fee967f03d65f65","kind":"tag","published_at":"2024-05-12T04:13:15.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.18","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.18","dependencies_parsed_at":"2024-05-14T04:12:34.200Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.18","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.18/manifests"},{"name":"v2.17.0","sha":"8d945475ac4b1aac4ae08b2fd27db9917158b6ce","kind":"tag","published_at":"2024-03-11T21:19:44.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.17.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.17.0","dependencies_parsed_at":"2024-03-13T04:04:02.709Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.17.0/manifests"},{"name":"v2.17","sha":"8d945475ac4b1aac4ae08b2fd27db9917158b6ce","kind":"tag","published_at":"2024-03-11T21:19:44.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.17","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.17","dependencies_parsed_at":"2024-03-13T04:04:02.712Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.17","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.17/manifests"},{"name":"v2.16.5","sha":"ce3fb7832089eb3e723a0a99cab7f3eaccf074fd","kind":"tag","published_at":"2024-01-30T23:14:31.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.16.5","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.16.5","dependencies_parsed_at":"2024-02-03T04:09:05.656Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.16.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.5/manifests"},{"name":"v2.16.4","sha":"0b04ab1040366101259658b355777e4ff2d16f83","kind":"tag","published_at":"2024-01-28T17:21:45.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.16.4","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.16.4","dependencies_parsed_at":"2024-02-01T04:13:29.382Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.16.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.4/manifests"},{"name":"v2.16.3","sha":"e250df5d5da8c45226a8de1a80e6bfbbf46f5e4b","kind":"tag","published_at":"2024-01-26T19:22:01.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.16.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.16.3","dependencies_parsed_at":"2024-01-28T04:09:00.012Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.16.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.3/manifests"},{"name":"v2.16.2","sha":"fff9ec32ed25a9c576750c91e06b410ed0c15db7","kind":"tag","published_at":"2023-10-03T19:07:26.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.16.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.16.2","dependencies_parsed_at":"2023-11-09T04:17:07.434Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.16.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.2/manifests"},{"name":"v2.16","sha":"fff9ec32ed25a9c576750c91e06b410ed0c15db7","kind":"tag","published_at":"2023-10-03T19:07:26.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.16","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.16","dependencies_parsed_at":"2023-11-09T04:17:07.457Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.16","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16/manifests"},{"name":"v2.16.1","sha":"7da7df1efc530f07d1945c00934b8cfd34be0d50","kind":"tag","published_at":"2023-09-26T08:52:08.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.16.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.16.1","dependencies_parsed_at":"2023-11-09T04:17:07.470Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.16.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.1/manifests"},{"name":"v2.16.0","sha":"a873dd9cbf9e3c4c73a1fd11ac31cf835f6eb502","kind":"tag","published_at":"2023-09-18T17:34:56.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.16.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.16.0","dependencies_parsed_at":"2023-11-09T04:17:07.471Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.16.0/manifests"},{"name":"v2.15","sha":"39a63b5912f086dd459cf6fcb13dcdd3fe3bc24d","kind":"tag","published_at":"2023-08-08T17:54:52.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.15","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.15","dependencies_parsed_at":"2023-11-09T04:17:07.443Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.15","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.15/manifests"},{"name":"v2.15.0","sha":"39a63b5912f086dd459cf6fcb13dcdd3fe3bc24d","kind":"tag","published_at":"2023-08-08T17:54:52.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.15.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.15.0","dependencies_parsed_at":"2023-11-09T04:17:07.414Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.15.0/manifests"},{"name":"v2.14","sha":"f21bb8376a051ffb6cb5604b28ccaef7b90e8ab7","kind":"tag","published_at":"2023-07-15T08:53:26.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.14","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.14","dependencies_parsed_at":"2023-11-09T04:17:07.418Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.14/manifests"},{"name":"v2.14.1","sha":"f21bb8376a051ffb6cb5604b28ccaef7b90e8ab7","kind":"tag","published_at":"2023-07-15T08:53:26.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.14.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.14.1","dependencies_parsed_at":"2023-11-09T04:17:07.444Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.14.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.14.1/manifests"},{"name":"v2.14.0","sha":"66b46d086804a9e9782354100d96a3a445431bca","kind":"tag","published_at":"2023-07-10T10:43:26.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.14.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.14.0","dependencies_parsed_at":"2023-11-09T04:17:07.417Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.14.0/manifests"},{"name":"v2.13","sha":"0ecddd92b62987d7a2ae8911f4bb8ec9e2e4496a","kind":"tag","published_at":"2023-06-10T12:14:50.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.13","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.13","dependencies_parsed_at":"2023-11-09T04:17:07.459Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.13/manifests"},{"name":"v2.13.1","sha":"0ecddd92b62987d7a2ae8911f4bb8ec9e2e4496a","kind":"tag","published_at":"2023-06-10T12:14:50.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.13.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.13.1","dependencies_parsed_at":"2023-11-09T04:17:07.416Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.13.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.13.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.13.1/manifests"},{"name":"v2.13.0","sha":"51f5c7fe68ff24694d5a6ac0eb3ad476ddd062a8","kind":"tag","published_at":"2023-05-28T16:03:37.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.13.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.13.0","dependencies_parsed_at":"2023-11-09T04:17:07.039Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.13.0/manifests"},{"name":"v2.12.3","sha":"5e15bb25b428e1bf2daf2215f173d2b40135f56f","kind":"tag","published_at":"2023-04-19T08:00:57.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.12.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.12.3","dependencies_parsed_at":"2023-06-02T00:15:45.342Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.12.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.12.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.12.3/manifests"},{"name":"v2.12.2","sha":"9f18d385cbb38b9c24f46a2c798f361ecea8fd5c","kind":"tag","published_at":"2023-04-18T20:11:53.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.12.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.12.2","dependencies_parsed_at":"2023-06-02T00:15:45.499Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.12.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.12.2/manifests"},{"name":"v2.12.1","sha":"02ad79a31bf7aa0eee07f690509048d2fb9fd445","kind":"tag","published_at":"2023-03-11T13:22:37.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.12.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.12.1","dependencies_parsed_at":"2023-06-02T00:15:44.419Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.12.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.12.1/manifests"},{"name":"v2.12.0","sha":"a808017c3962f4d678fe685239668aad8c150932","kind":"tag","published_at":"2023-01-16T18:35:53.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.12.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.12.0","dependencies_parsed_at":"2023-06-01T13:16:16.046Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.12.0/manifests"},{"name":"v2.11.4","sha":"27fc88e6385a995e61a87ee4b903bed263e6a6e2","kind":"tag","published_at":"2022-12-24T15:28:49.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.11.4","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.11.4","dependencies_parsed_at":"2023-06-01T10:29:31.738Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.11.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.11.4/manifests"},{"name":"v2.11.3","sha":"a34a6b0f72a20272544a22a4d348d0e6cf4f6c88","kind":"tag","published_at":"2022-12-05T21:29:00.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.11.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.11.3","dependencies_parsed_at":"2023-05-31T21:41:53.270Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.11.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.11.3/manifests"},{"name":"v2.11.2","sha":"a6732b126f28affc0bef10118c6480ff722aa9ff","kind":"tag","published_at":"2022-10-26T18:58:11.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.11.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.11.2","dependencies_parsed_at":"2023-05-31T18:28:39.615Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.11.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.11.2/manifests"},{"name":"v2.11.1","sha":"190455139953dd8820b39f9eaf4390ed11320d90","kind":"tag","published_at":"2022-10-13T10:45:12.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.11.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.11.1","dependencies_parsed_at":"2023-05-31T18:28:40.186Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.11.1/manifests"},{"name":"v2.11.0","sha":"a9ad61c87f58b884fde0dc701650f9e8f02de1c5","kind":"tag","published_at":"2022-10-13T08:55:07.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.11.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.11.0","dependencies_parsed_at":"2023-05-31T18:28:40.782Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.11.0/manifests"},{"name":"v2.10.2","sha":"7c45799919d2dcd7ac59433924d763dd24d97483","kind":"tag","published_at":"2022-09-25T08:48:16.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.10.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.10.2","dependencies_parsed_at":"2023-05-31T12:58:27.588Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.10.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.10.2/manifests"},{"name":"v2.10.1","sha":"225387a9d55a3df0ca48efc17acf4964b8ef4f10","kind":"tag","published_at":"2022-09-18T11:57:13.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.10.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.10.1","dependencies_parsed_at":"2023-05-30T23:15:32.905Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.10.1/manifests"},{"name":"v2.10.0","sha":"67a7175578d31df091005d66d55bd8daa4e18665","kind":"tag","published_at":"2022-09-13T09:26:35.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.10.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.10.0","dependencies_parsed_at":"2023-05-30T23:15:33.660Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.10.0/manifests"},{"name":"v2.9.0","sha":"0abd6c205d5baf3066155b5bf85219147d770c61","kind":"tag","published_at":"2022-08-11T18:43:38.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.9.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.9.0","dependencies_parsed_at":"2023-05-30T23:15:34.546Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.9.0/manifests"},{"name":"v2.8.1","sha":"afb4329fe32181c15d34ef94bf64dad7715b44ba","kind":"tag","published_at":"2022-07-18T20:41:58.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.8.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.8.1","dependencies_parsed_at":"2023-05-30T23:15:35.466Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.8.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.8.1/manifests"},{"name":"v2.8.0","sha":"5ef488ba307a34c0e4bf4e55384ff8dbe470226a","kind":"tag","published_at":"2022-07-05T17:33:15.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.8.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.8.0","dependencies_parsed_at":"2023-05-30T23:15:41.082Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.8.0/manifests"},{"name":"v2.7.0","sha":"cc56a140d2e514e2a46bdf6640b035917ee53b77","kind":"tag","published_at":"2022-06-17T18:33:42.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.7.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.7.0","dependencies_parsed_at":"2023-05-30T23:15:43.199Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.7.0/manifests"},{"name":"2.7.0","sha":"cc56a140d2e514e2a46bdf6640b035917ee53b77","kind":"commit","published_at":"2022-06-17T18:33:39.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/2.7.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/2.7.0","dependencies_parsed_at":"2023-05-30T23:15:42.034Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@2.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/2.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/2.7.0/manifests"},{"name":"v2.6.1","sha":"aa753429b2fdc380e9665c4f031c7d9998718d7c","kind":"tag","published_at":"2022-06-07T08:14:44.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.6.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.6.1","dependencies_parsed_at":"2023-05-30T23:15:44.705Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.6.1/manifests"},{"name":"2.6.1","sha":"aa753429b2fdc380e9665c4f031c7d9998718d7c","kind":"commit","published_at":"2022-06-07T08:14:16.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/2.6.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/2.6.1","dependencies_parsed_at":"2023-05-30T23:15:43.836Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@2.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/2.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/2.6.1/manifests"},{"name":"v2.6.0","sha":"4bbbee7949a4878926f3adeb32de3f60d63523b4","kind":"tag","published_at":"2022-05-25T17:44:26.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.6.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.6.0","dependencies_parsed_at":"2023-05-30T23:15:45.997Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.6.0/manifests"},{"name":"2.6.0","sha":"4bbbee7949a4878926f3adeb32de3f60d63523b4","kind":"commit","published_at":"2022-05-25T17:43:56.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/2.6.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/2.6.0","dependencies_parsed_at":"2023-05-30T23:15:45.339Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@2.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/2.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/2.6.0/manifests"},{"name":"v2.5.0","sha":"0b6307072a15a35debbb73215c012cf29c672908","kind":"tag","published_at":"2022-04-29T13:46:12.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.5.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.5.0","dependencies_parsed_at":"2023-05-30T23:15:47.493Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.5.0/manifests"},{"name":"2.5.0","sha":"0b6307072a15a35debbb73215c012cf29c672908","kind":"commit","published_at":"2022-04-29T13:46:08.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/2.5.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/2.5.0","dependencies_parsed_at":"2023-05-30T23:15:46.667Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@2.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/2.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/2.5.0/manifests"},{"name":"v2.4.0","sha":"1a5fec7075255d974a4adf330e507dbe4bce6cb7","kind":"tag","published_at":"2022-04-02T13:53:30.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.4.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.4.0","dependencies_parsed_at":"2023-05-30T23:15:48.219Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.4.0/manifests"},{"name":"v2.3.1","sha":"461bed51d3619c4c670f008148de8ce1465ba586","kind":"tag","published_at":"2021-12-14T18:58:16.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.3.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.3.1","dependencies_parsed_at":"2023-05-30T23:15:48.982Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.3.1/manifests"},{"name":"v2.3.0","sha":"f717468ff60fbd2ee76b6327596d078ad0ec13d5","kind":"tag","published_at":"2021-11-26T18:42:14.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.3.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.3.0","dependencies_parsed_at":"2023-05-30T23:15:49.671Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.3.0/manifests"},{"name":"v2.2.2","sha":"2f4987fab99238c9bf61e78b06a887ea80134626","kind":"tag","published_at":"2021-10-26T19:32:44.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.2.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.2.2","dependencies_parsed_at":"2023-05-30T23:15:50.365Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.2/manifests"},{"name":"v2.2.1","sha":"578098a3f80e6a44fa0e4e3cfc67679c2d1be7f3","kind":"tag","published_at":"2021-10-26T18:19:57.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.2.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.2.1","dependencies_parsed_at":"2023-05-30T23:15:50.924Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.1/manifests"},{"name":"v2.2.1b1","sha":"90024def2cfa51157f8c64137ff8217c0d8bc42e","kind":"tag","published_at":"2021-10-26T17:59:58.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.2.1b1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.2.1b1","dependencies_parsed_at":"2023-05-30T23:15:51.565Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.2.1b1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.1b1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.1b1/manifests"},{"name":"v2.2.0","sha":"298a8baef7c63393389fd742098e56b62a5e418d","kind":"tag","published_at":"2021-10-22T13:00:06.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.2.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.2.0","dependencies_parsed_at":"2023-05-30T23:15:52.156Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.0/manifests"},{"name":"v2.2.0b1","sha":"8837cef3e0e5b243912d7ce61fe192ed7a2905b9","kind":"tag","published_at":"2021-10-19T18:23:58.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.2.0b1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.2.0b1","dependencies_parsed_at":"2023-05-30T23:15:52.700Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.2.0b1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.0b1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.0b1/manifests"},{"name":"v2.1.3","sha":"e8db6ff3e09e106e5777c2eed1e91521064551d3","kind":"tag","published_at":"2021-10-06T20:20:40.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.1.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.1.3","dependencies_parsed_at":"2023-05-30T23:15:53.249Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.1.3/manifests"},{"name":"v2.2.0a1","sha":"7833e45f5a1e0db8a2923f8330d3de051950e040","kind":"tag","published_at":"2021-09-23T17:49:53.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.2.0a1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.2.0a1","dependencies_parsed_at":"2023-05-30T23:15:53.764Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.2.0a1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.0a1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.2.0a1/manifests"},{"name":"v2.1.2","sha":"de80b4af9534380b30ae9f4d801720e7c4ebd5ca","kind":"tag","published_at":"2021-09-14T08:13:28.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.1.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.1.2","dependencies_parsed_at":"2023-05-30T23:15:56.096Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.1.2/manifests"},{"name":"v2.1.1","sha":"c713c6053dc990e6266d744fa784a2ae5cd001c3","kind":"tag","published_at":"2021-08-07T19:06:21.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.1.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.1.1","dependencies_parsed_at":"2023-05-30T23:15:56.684Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.1.1/manifests"},{"name":"v2.0.1","sha":"2de5bf4b900759cd6befc4cd95e2493aef781c51","kind":"tag","published_at":"2021-07-25T13:39:56.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.0.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.0.1","dependencies_parsed_at":"2023-05-30T23:15:57.273Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.1/manifests"},{"name":"v2.0.0","sha":"d8c7cb2ceaf1ccef4a4beed7e364ffbb90e8ea0b","kind":"tag","published_at":"2021-07-16T11:05:26.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.0.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.0.0","dependencies_parsed_at":"2023-05-30T23:15:57.866Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0/manifests"},{"name":"v2.0.0b2","sha":"5e6ffa9f2529cbc011edfd631dd398ca5c4bc3a2","kind":"tag","published_at":"2021-07-09T21:18:06.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.0.0b2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.0.0b2","dependencies_parsed_at":"2023-05-30T23:15:58.482Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.0.0b2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0b2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0b2/manifests"},{"name":"v2.0.0b1","sha":"63720bbc6714f176210af967aa329921ca1b4220","kind":"tag","published_at":"2021-07-09T17:56:15.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.0.0b1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.0.0b1","dependencies_parsed_at":"2023-05-30T23:15:59.070Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.0.0b1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0b1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0b1/manifests"},{"name":"v2.0.0a4","sha":"d6cf349b1aed804ef69b131d0b16a66e7a71f752","kind":"tag","published_at":"2021-06-25T12:55:17.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.0.0a4","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.0.0a4","dependencies_parsed_at":"2023-05-30T23:15:59.651Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.0.0a4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0a4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0a4/manifests"},{"name":"v2.0.0a3","sha":"501562c57261dbf709ba16cba4611bfb1c150675","kind":"tag","published_at":"2021-06-22T17:23:15.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.0.0a3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.0.0a3","dependencies_parsed_at":"2023-05-30T23:16:00.250Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.0.0a3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0a3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0a3/manifests"},{"name":"v1.12.0","sha":"bf3a5590c9aeb9a7e4ff4025ef7400e0c6ad1248","kind":"tag","published_at":"2021-06-22T17:13:53.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.12.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.12.0","dependencies_parsed_at":"2023-05-30T23:16:00.753Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.12.0/manifests"},{"name":"v2.0.0a2","sha":"688c458172043c548623d96a0402f361e3b2091d","kind":"tag","published_at":"2021-06-01T08:27:37.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.0.0a2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.0.0a2","dependencies_parsed_at":"2023-05-30T23:16:01.307Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.0.0a2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0a2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0a2/manifests"},{"name":"v2.0.0a1","sha":"fa883329ee390bf9751111342425c7ef2c55abaf","kind":"tag","published_at":"2021-06-01T08:23:48.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v2.0.0a1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v2.0.0a1","dependencies_parsed_at":"2023-05-30T23:16:01.948Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v2.0.0a1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0a1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v2.0.0a1/manifests"},{"name":"v1.11.1.post1","sha":"6c62f9ee6275d849a6102c7fa14366fda81ccf95","kind":"tag","published_at":"2021-05-28T14:58:39.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.11.1.post1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.11.1.post1","dependencies_parsed_at":"2023-05-30T23:16:03.249Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.11.1.post1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.11.1.post1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.11.1.post1/manifests"},{"name":"v1.11.1","sha":"5ea360607df3d271239b364257eb636411d6a8e8","kind":"tag","published_at":"2021-05-28T14:50:48.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.11.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.11.1","dependencies_parsed_at":"2023-05-30T23:16:02.496Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.11.1/manifests"},{"name":"v1.11.0","sha":"aa12480ff0e5381eca2258a6957aea6af5c46172","kind":"tag","published_at":"2021-05-01T17:24:58.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.11.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.11.0","dependencies_parsed_at":"2023-05-30T23:16:03.730Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.11.0/manifests"},{"name":"v1.10.1","sha":"2c7c2c8fc7d64182d4ce0bb2dfa81121f741404a","kind":"tag","published_at":"2021-05-01T17:23:40.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.10.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.10.1","dependencies_parsed_at":"2023-05-30T23:16:04.284Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.10.1/manifests"},{"name":"v1.10.0","sha":"84f82a5898d7b7a561b94f22d6a0227e8ad0c946","kind":"tag","published_at":"2021-02-23T21:07:59.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.10.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.10.0","dependencies_parsed_at":"2023-05-30T23:16:04.977Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.10.0/manifests"},{"name":"v1.9.0","sha":"5514dd28f0e6ab8f584981a98ff86c60b77466ed","kind":"tag","published_at":"2021-02-05T21:44:43.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.9.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.9.0","dependencies_parsed_at":"2023-05-30T23:16:05.567Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.9.0/manifests"},{"name":"v1.8.0","sha":"96e396497229b5ce259d36428111fff2136f69c5","kind":"tag","published_at":"2021-01-22T19:18:52.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.8.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.8.0","dependencies_parsed_at":"2023-05-30T23:16:06.190Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.8.0/manifests"},{"name":"v1.7.4","sha":"4be9285fc79b4c802d8e5f1b8ab01039ba8f0b9b","kind":"tag","published_at":"2021-01-02T11:47:08.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.7.4","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.7.4","dependencies_parsed_at":"2023-05-30T23:16:07.006Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.7.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.7.4/manifests"},{"name":"v1.7.3","sha":"eed12cf4c95141edd8bdad300469e985c10c95ef","kind":"tag","published_at":"2021-01-01T13:21:31.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.7.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.7.3","dependencies_parsed_at":"2023-05-30T23:16:07.735Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.7.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.7.3/manifests"},{"name":"v1.7.2","sha":"ed8a9533c5b5b95b9e5f9a3ee53bfce9915459b4","kind":"tag","published_at":"2020-12-21T13:20:48.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.7.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.7.2","dependencies_parsed_at":"2023-05-30T23:16:08.281Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.7.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.7.2/manifests"},{"name":"v1.7.1","sha":"49077c2a36f35d23183f49126c6c0652ea87f206","kind":"tag","published_at":"2020-12-03T18:02:35.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.7.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.7.1","dependencies_parsed_at":"2023-05-30T23:16:09.006Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.7.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.7.1/manifests"},{"name":"v1.7.0","sha":"0fb2ead6fb5757076862910d05dfd882c9ba0272","kind":"tag","published_at":"2020-11-26T23:29:36.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.7.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.7.0","dependencies_parsed_at":"2023-05-30T23:16:09.662Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.7.0/manifests"},{"name":"v1.6.4","sha":"d12e54af41a003ae4b4d148271328e6545ba0d52","kind":"tag","published_at":"2020-10-31T15:56:43.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.6.4","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.6.4","dependencies_parsed_at":"2023-05-30T23:16:10.497Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.6.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.6.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.6.4/manifests"},{"name":"v1.6.3","sha":"1e164977767dcd3f532555fb7c30f0d1197a1295","kind":"tag","published_at":"2020-10-12T20:05:20.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.6.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.6.3","dependencies_parsed_at":"2023-05-30T23:16:11.029Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.6.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.6.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.6.3/manifests"},{"name":"v1.6.2","sha":"97dd4ee1c06f3cf271a26c61a59305f7598a0fef","kind":"tag","published_at":"2020-10-09T12:23:04.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.6.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.6.2","dependencies_parsed_at":"2023-05-30T23:16:11.593Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.6.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.6.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.6.2/manifests"},{"name":"v1.6.1","sha":"aacd0fe33c9aba4075395719be2e3fc36d761e8e","kind":"tag","published_at":"2020-09-20T16:36:35.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.6.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.6.1","dependencies_parsed_at":"2023-05-30T23:16:12.243Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.6.1/manifests"},{"name":"v1.6.0","sha":"200d4af89cba757ef16a30c5413954c4e5d23e87","kind":"tag","published_at":"2020-09-09T07:57:25.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.6.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.6.0","dependencies_parsed_at":"2023-05-30T23:16:12.806Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.6.0/manifests"},{"name":"v1.5.5","sha":"5c4767899dc4418b509a2d7ccfde07d33ab29e28","kind":"tag","published_at":"2020-07-22T17:57:47.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.5.5","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.5.5","dependencies_parsed_at":"2023-05-30T23:16:13.545Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.5.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.5/manifests"},{"name":"v1.5.4","sha":"c0cb43800b6740677e373889705b61b17b879a8d","kind":"tag","published_at":"2020-07-19T21:40:33.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.5.4","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.5.4","dependencies_parsed_at":"2023-05-30T23:16:14.253Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.5.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.4/manifests"},{"name":"v1.5.3","sha":"c884530a1da933814eaaaa9fa2db605e8ecaf116","kind":"tag","published_at":"2020-07-19T10:59:56.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.5.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.5.3","dependencies_parsed_at":"2023-05-30T23:16:14.848Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.5.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.3/manifests"},{"name":"v1.5.2","sha":"8ddc6d57a25c959308d27e48be69f1f84187c8bf","kind":"tag","published_at":"2020-07-08T21:59:40.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.5.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.5.2","dependencies_parsed_at":"2023-05-30T23:16:15.446Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.5.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.2/manifests"},{"name":"v1.5.1","sha":"321335e756422765cffb0c9ab2caad14b1fd9f31","kind":"tag","published_at":"2020-06-25T09:53:30.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.5.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.5.1","dependencies_parsed_at":"2023-05-30T23:16:16.162Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.5.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.1/manifests"},{"name":"v1.5.0","sha":"41891277d33c728059fb89ac2ce0c2b32d6d459b","kind":"tag","published_at":"2020-06-24T08:54:55.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.5.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.5.0","dependencies_parsed_at":"2023-05-30T23:16:16.686Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.5.0/manifests"},{"name":"v1.4.2","sha":"ecbdc2e3d37e726e4cd0d0fd5ca1c3d53ebcedaf","kind":"tag","published_at":"2020-05-25T15:16:14.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.4.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.4.2","dependencies_parsed_at":"2023-05-30T23:16:17.303Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.4.2/manifests"},{"name":"v1.4.1","sha":"9ea7fa7628b87461d0b36fac2a5271978ba28f32","kind":"tag","published_at":"2020-05-04T16:11:32.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.4.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.4.1","dependencies_parsed_at":"2023-05-30T23:16:19.319Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.4.1/manifests"},{"name":"v1.4.0","sha":"783dedad22fbb0483f2944ecf17af749581d94f6","kind":"tag","published_at":"2020-05-02T16:55:50.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.4.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.4.0","dependencies_parsed_at":"2023-05-30T23:16:21.384Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.4.0/manifests"},{"name":"v1.3.0","sha":"40ff745321112ff802f1aa4dffa06634f365f901","kind":"tag","published_at":"2020-03-12T19:53:34.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.3.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.3.0","dependencies_parsed_at":"2023-05-30T23:16:23.181Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.3.0/manifests"},{"name":"v1.2.0","sha":"4628c1334e3350630710bff2a148ab1e18ff2464","kind":"tag","published_at":"2020-03-08T12:50:23.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.2.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.2.0","dependencies_parsed_at":"2023-05-30T23:16:25.089Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.2.0/manifests"},{"name":"v1.1.0","sha":"7709989603e88d28419bb936c46d1030a0aefaf3","kind":"commit","published_at":"2019-12-07T14:58:10.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.1.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.1.0","dependencies_parsed_at":"2023-05-30T23:16:26.637Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.1.0/manifests"},{"name":"v1.0.0","sha":"beda5292987d1aac6d9c51027fe66a55bfd58930","kind":"commit","published_at":"2019-11-10T15:16:37.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v1.0.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v1.0.0","dependencies_parsed_at":"2023-05-30T23:16:28.058Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v1.0.0/manifests"},{"name":"v0.12.0","sha":"aeeac6725a707ab7396fa3cb460cd143a0e42d6d","kind":"commit","published_at":"2019-09-29T19:40:44.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.12.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.12.0","dependencies_parsed_at":"2023-05-30T23:16:29.203Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.12.0/manifests"},{"name":"v0.11.1","sha":"a1fc0cb11791aa6ad8a982456d990c7d25f4960f","kind":"commit","published_at":"2019-05-28T18:17:28.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.11.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.11.1","dependencies_parsed_at":"2023-05-30T23:16:30.361Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.11.1/manifests"},{"name":"v0.11.0","sha":"0d85db711160b20fc4b717dac7ee59ba3e21e499","kind":"commit","published_at":"2019-05-26T11:48:43.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.11.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.11.0","dependencies_parsed_at":"2023-05-30T23:16:31.536Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.11.0/manifests"},{"name":"v0.10.2","sha":"054c2739979388de93c39e9c531cecdb5734fde4","kind":"commit","published_at":"2019-03-10T23:32:06.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.10.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.10.2","dependencies_parsed_at":"2023-05-30T23:16:32.791Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.10.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.10.2/manifests"},{"name":"v0.10.1","sha":"f1bba58f86308123a03c9aadcfcb663674bc4c48","kind":"commit","published_at":"2019-02-03T21:54:00.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.10.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.10.1","dependencies_parsed_at":"2023-05-30T23:16:34.063Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.10.1/manifests"},{"name":"v0.10.0","sha":"2a91396064a45fe48d5c8303a799c64ed1c8f0ff","kind":"commit","published_at":"2018-09-23T21:08:39.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.10.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.10.0","dependencies_parsed_at":"2023-05-30T23:16:35.168Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.10.0/manifests"},{"name":"v0.9.4","sha":"8124b144910e7fd5fdedee509d55797445df08b1","kind":"commit","published_at":"2018-07-29T17:19:24.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.9.4","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.9.4","dependencies_parsed_at":"2023-05-30T23:16:36.335Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.9.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.9.4/manifests"},{"name":"v0.9.3","sha":"6da52a544b8e58e99ff9b9f929baa2a458945f07","kind":"commit","published_at":"2018-07-10T18:03:48.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.9.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.9.3","dependencies_parsed_at":"2023-05-30T23:16:37.507Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.9.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.9.3/manifests"},{"name":"v0.9.2","sha":"3ef401b19efb28db6e0a73c514b935caf35a43e0","kind":"commit","published_at":"2018-07-01T20:28:28.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.9.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.9.2","dependencies_parsed_at":"2023-05-30T23:16:38.780Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.9.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.9.2/manifests"},{"name":"v0.9.1","sha":"0627b384023072914e286ca6391343a11c18297c","kind":"commit","published_at":"2018-06-18T22:09:19.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.9.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.9.1","dependencies_parsed_at":"2023-05-30T23:16:39.910Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.9.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.9.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.9.1/manifests"},{"name":"v0.9.0","sha":"7c635b4550021326ba7c3bf8a43b92f4cb89e948","kind":"commit","published_at":"2018-06-18T21:52:02.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.9.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.9.0","dependencies_parsed_at":"2023-05-30T23:16:41.068Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.9.0/manifests"},{"name":"v0.8.0","sha":"d93547d8beaed3d249a4f31e400a55d930abada1","kind":"commit","published_at":"2018-05-04T17:04:39.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.8.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.8.0","dependencies_parsed_at":"2023-05-30T23:16:42.201Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.8.0/manifests"},{"name":"v0.7.2","sha":"3a4d611da1656c50df0a2f017de8ddbc9bf491d6","kind":"commit","published_at":"2018-04-25T22:03:14.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.7.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.7.2","dependencies_parsed_at":"2023-05-30T23:16:43.420Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.7.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.7.2/manifests"},{"name":"v0.7.1","sha":"7f51b1d8e7355905b001cb93002e43ac59f743b8","kind":"commit","published_at":"2018-04-02T14:49:39.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.7.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.7.1","dependencies_parsed_at":"2023-05-30T23:16:44.408Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.7.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.7.1/manifests"},{"name":"v0.7.0","sha":"ffb48a61cba7d0b0dc4766896ae6af174406669f","kind":"commit","published_at":"2018-01-07T18:04:52.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.7.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.7.0","dependencies_parsed_at":"2023-05-30T23:16:46.748Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.7.0/manifests"},{"name":"v0.6.0","sha":"ede818944ed8bed3511a5f9a74066cdaf4d75064","kind":"commit","published_at":"2017-10-09T18:09:26.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.6.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.6.0","dependencies_parsed_at":"2023-05-30T23:16:49.069Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.6.0/manifests"},{"name":"v0.5.1","sha":"d549a1301f8c57fcf7c718b9eae7b4aea71596e2","kind":"commit","published_at":"2017-09-10T21:46:27.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.5.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.5.1","dependencies_parsed_at":"2023-05-30T23:16:50.247Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.5.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.5.1/manifests"},{"name":"v0.5.0","sha":"203ce7879da50760dd628cf13d8eddbe994a66a1","kind":"commit","published_at":"2017-09-07T21:59:56.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.5.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.5.0","dependencies_parsed_at":"2023-05-30T23:16:51.382Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.5.0/manifests"},{"name":"v0.4.1","sha":"77ab9a7627c32bc7e3a0d7f6d8937e4a54126eb0","kind":"commit","published_at":"2017-08-14T20:37:37.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.4.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.4.1","dependencies_parsed_at":"2023-05-30T23:16:51.922Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.4.1/manifests"},{"name":"v0.4.0","sha":"4c0dd55c1aff96cffac2babb06c5525d07dc6547","kind":"commit","published_at":"2017-07-23T21:24:56.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.4.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.4.0","dependencies_parsed_at":"2023-05-30T23:16:52.508Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.4.0/manifests"},{"name":"v0.3.0","sha":"dbb9bcb4d5ded57ee6217f039df5e8d93fea014a","kind":"commit","published_at":"2017-06-27T16:48:34.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.3.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.3.0","dependencies_parsed_at":"2023-05-30T23:16:53.205Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.3.0/manifests"},{"name":"v0.2.1","sha":"533ef04740127947446c3ecebde8158f8848fa6b","kind":"commit","published_at":"2017-06-11T15:20:44.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.2.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.2.1","dependencies_parsed_at":"2023-05-30T23:16:53.782Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.2.1/manifests"},{"name":"v0.2.0","sha":"e3b2de04893f22d0cd63c298684e196c9cd0aac3","kind":"commit","published_at":"2017-04-13T14:24:05.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.2.0","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.2.0","dependencies_parsed_at":"2023-05-30T23:16:54.325Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.2.0/manifests"},{"name":"v0.1.3","sha":"c53d79557e5803b1d8901cc74a425aa5e9855de3","kind":"commit","published_at":"2017-03-31T09:20:43.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.1.3","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.1.3","dependencies_parsed_at":"2023-05-30T23:16:54.702Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.1.3/manifests"},{"name":"v0.1.2","sha":"46868f6cfe82fb6b36bcf6b80b7c1e19f9f668c0","kind":"commit","published_at":"2017-03-23T15:28:56.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.1.2","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.1.2","dependencies_parsed_at":"2023-05-30T23:16:55.020Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.1.2/manifests"},{"name":"v0.1.1","sha":"2d308f3a900717fa756df39d927cee373be2ef33","kind":"commit","published_at":"2017-03-19T21:56:35.000Z","download_url":"https://codeload.github.com/pypa/cibuildwheel/tar.gz/v0.1.1","html_url":"https://github.com/pypa/cibuildwheel/releases/tag/v0.1.1","dependencies_parsed_at":"2023-05-30T23:16:55.158Z","dependency_job_id":null,"purl":"pkg:github/pypa/cibuildwheel@v0.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/tags/v0.1.1/manifests"}]},"repo_metadata_updated_at":"2026-08-09T16:46:01.097Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":2581,"rankings":{"downloads":null,"dependent_repos_count":0.4436697829187134,"dependent_packages_count":0.0,"stargazers_count":0.11408651560766915,"forks_count":0.22500396133734749,"docker_downloads_count":3.650768499445413,"average":0.8867057518618285},"purl":"pkg:githubactions/pypa/cibuildwheel","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/pypa/cibuildwheel","docker_dependents_count":1,"docker_downloads_count":58,"usage_url":"https://repos.ecosyste.ms/usage/actions/pypa/cibuildwheel","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/pypa/cibuildwheel/dependencies","status":null,"funding_links":["https://github.com/sponsors/pypa"],"critical":null,"issue_metadata":{"last_synced_at":"2026-08-08T23:59:44.455Z","issues_count":359,"pull_requests_count":1188,"avg_time_to_close_issue":11144950.1302521,"avg_time_to_close_pull_request":1003365.2805474096,"issues_closed_count":238,"pull_requests_closed_count":1023,"pull_request_authors_count":91,"issue_authors_count":227,"avg_comments_per_issue":4.32033426183844,"avg_comments_per_pull_request":2.0345117845117846,"merged_pull_requests_count":942,"bot_issues_count":2,"bot_pull_requests_count":426,"past_year_issues_count":43,"past_year_pull_requests_count":173,"past_year_avg_time_to_close_issue":1982822.5,"past_year_avg_time_to_close_pull_request":749429.9910714285,"past_year_issues_closed_count":30,"past_year_pull_requests_closed_count":112,"past_year_pull_request_authors_count":31,"past_year_issue_authors_count":30,"past_year_avg_comments_per_issue":3.2093023255813953,"past_year_avg_comments_per_pull_request":1.439306358381503,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":43,"past_year_merged_pull_requests_count":103,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fcibuildwheel/issues","maintainers":[{"login":"mayeut","count":177,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/mayeut"},{"login":"agriyakhetarpal","count":28,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/agriyakhetarpal"},{"login":"mhsmith","count":12,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/mhsmith"},{"login":"webknjaz","count":9,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/webknjaz"},{"login":"cdce8p","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/cdce8p"},{"login":"ryanking13","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/ryanking13"},{"login":"YannickJadoul","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/YannickJadoul"},{"login":"ewdurbin","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/ewdurbin"}],"active_maintainers":[{"login":"agriyakhetarpal","count":28,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/agriyakhetarpal"},{"login":"mayeut","count":21,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/mayeut"},{"login":"mhsmith","count":11,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/mhsmith"},{"login":"cdce8p","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/cdce8p"},{"login":"ryanking13","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/ryanking13"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/pypa%2Fcibuildwheel/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/pypa%2Fcibuildwheel/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/pypa%2Fcibuildwheel/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/pypa%2Fcibuildwheel/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/pypa%2Fcibuildwheel/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/pypa%2Fcibuildwheel/codemeta","maintainers":[]}