{"id":11786184,"name":"LizardByte/setup-python-action","ecosystem":"actions","description":"Set up a specific version of Python, including Python 2.7, and add the command-line tools to the PATH.","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/LizardByte/setup-python-action","keywords_array":["github-action","maintainer-wanted","python"],"namespace":"LizardByte","versions_count":39,"first_release_published_at":"2023-10-23T23:32:36.000Z","latest_release_published_at":"2025-06-12T12:48:14.000Z","latest_release_number":"v2025.612.124814","last_synced_at":"2026-04-12T17:01:49.917Z","created_at":"2025-06-10T13:31:15.935Z","updated_at":"2026-04-12T17:01:49.917Z","registry_url":"https://github.com/LizardByte/setup-python-action","install_command":null,"documentation_url":null,"metadata":{"name":"Setup Python","description":"Set up a specific version of Python, including Python 2.7, and add the command-line tools to the PATH.","author":"LizardByte","inputs":{"python-version":{"description":"Version range or exact version of Python or PyPy to use, using SemVer's version range syntax.\nReads from .python-version if unset.\n","required":true},"architecture":{"description":"The target architecture (x86, x64) of the Python or PyPy interpreter.\nFor Python 2.7, this is only supported on Windows.\n","required":false,"default":"x64"}},"runs":{"using":"composite","steps":[{"name":"Setup Python 3+","if":"${{ inputs.python-version != '2.7' }}","uses":"actions/setup-python@v5","with":{"python-version":"${{ inputs.python-version }}","architecture":"${{ inputs.architecture }}"}},{"name":"Windows Install","shell":"bash","if":"${{ inputs.python-version == '2.7' \u0026\u0026 runner.os == 'Windows' }}","run":"if [[ \"${{ inputs.architecture }}\" == \"x86\" ]]; then\n  extra_flags=\"-x86\"\nfi\n\nchoco install python2 --version=2.7.18 -y --no-progress ${extra_flags}\n"},{"name":"Unix Install","shell":"bash","if":"${{ inputs.python-version == '2.7' \u0026\u0026 (runner.os == 'Linux' || runner.os == 'macOS') }}","run":"if [[ \"${{ runner.os }}\" == \"Linux\" ]]; then\n  curl https://pyenv.run | bash\n  export PATH=\"$HOME/.pyenv/bin:$PATH\"\nelif [[ \"${{ runner.os }}\" == \"macOS\" ]]; then\n  # if macos version \u003e= 13\n  if [[ $(sw_vers -productVersion | cut -d '.' -f1) -ge 13 ]]; then\n    echo \"macOS version \u003e= 13, relinking python@3.12 to avoid brew error\"\n    brew unlink python@3.12\n    brew link --overwrite python@3.12\n  fi\n\n  # install pyenv\n  brew install pyenv\n  export PATH=\"$(pyenv root)/shims:$(pyenv root)/bin:$PATH\"\nfi\n\n# install python 2.7\npyenv install 2.7.18\n"},{"name":"Setup Python Environment","if":"${{ inputs.python-version == '2.7' }}","shell":"bash","run":"echo \"Current system Python Version:\"\npython --version\n\necho \"Setting paths\"\nif [[ \"${{ runner.os }}\" == \"Windows\" ]]; then\n  export PATH=\"/c/Python27:/c/Python27/Scripts:$PATH\"\n  echo \"moving GitHub installed Python version\"\n  mv \"/c/hostedtoolcache/windows/Python/3.9.13\" \"/c/hostedtoolcache/windows/Python/3.9.13-backup\"\n\n  # set venv path\n  venv_base_path=\"/c/tmp/python27/venv\"\n  venv_base_path_windows=\"C:\\\\tmp\\\\python27\\\\venv\"\n  venv_dir=\"Scripts\"\nelif [[ \"${{ runner.os }}\" == \"Linux\" || \"${{ runner.os }}\" == \"macOS\" ]]; then\n  if [[ \"${{ runner.os }}\" == \"Linux\" ]]; then\n    export PATH=\"$HOME/.pyenv/bin:$PATH\"\n\n    # update alternatives\n    sudo update-alternatives --install /usr/bin/python python $(pyenv root)/shims/python 1\n  elif [[ \"${{ runner.os }}\" == \"macOS\" ]]; then\n    export PATH=\"$(pyenv root)/shims:$(pyenv root)/bin:$PATH\"  # use this instead of GITHUB_PATH to be first\n  fi\n  pyenv global 2.7.18\n  # set python to use `$(pyenv root)/versions/2.7.18/bin`\n  # export PATH=\"$(pyenv root)/versions/2.7.18/bin:$PATH\"\n  venv_base_path=\"/tmp/python27/venv\"\n  venv_dir=\"bin\"\nfi\n\necho \"New Python version:\"\npython --version\n\necho \"Bootstrapping pip\"\ncurl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py\npython get-pip.py\nrm -f get-pip.py\n\necho \"Installing virtualenv\"\npython -m pip install virtualenv\n\n# create venv\npython -m virtualenv ${venv_base_path}\n\n# activate venv\nsource ${venv_base_path}/${venv_dir}/activate\n\n# update\npython -m pip --no-python-version-warning --disable-pip-version-check install --upgrade pip setuptools\n\n# update the path environment, so the next steps can use the venv\n# required to use the shell\nif [[ \"${{ runner.os }}\" == \"Windows\" ]]; then\n    echo \"${venv_base_path_windows}\\\\${venv_dir}\" \u003e\u003e $GITHUB_PATH\nelse\n    echo \"${venv_base_path}/${venv_dir}\" \u003e\u003e $GITHUB_PATH\nfi\n\n# show python version\necho \"Python venv version:\"\npython --version\n"}]},"default_branch":"master","path":null},"repo_metadata":{"id":198591994,"uuid":"701114157","full_name":"LizardByte/setup-python-action","owner":"LizardByte","description":"Set up your GitHub Actions workflow with a specific version of Python (including Python 2.7)","archived":true,"fork":false,"pushed_at":"2025-06-30T23:10:08.000Z","size":80,"stargazers_count":9,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T14:35:03.134Z","etag":null,"topics":["github-action","maintainer-wanted","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LizardByte.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["LizardByte"],"patreon":"LizardByte","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://paypal.me/ReenigneArcher"]}},"created_at":"2023-10-06T00:23:39.000Z","updated_at":"2025-06-30T23:19:14.000Z","dependencies_parsed_at":"2023-10-13T06:52:54.892Z","dependency_job_id":"71a5f666-e5de-4f64-8b33-8a151048b6a2","html_url":"https://github.com/LizardByte/setup-python-action","commit_stats":null,"previous_names":["lizardbyte/action-setup-python","lizardbyte/setup-python-action"],"tags_count":39,"template":false,"template_full_name":null,"purl":"pkg:github/LizardByte/setup-python-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LizardByte","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279010256,"owners_count":26084718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"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":"LizardByte","name":"LizardByte","uuid":"84790584","kind":"organization","description":"Self-hosted cloud gaming.","email":null,"website":"https://app.lizardbyte.dev","location":"United States of America","twitter":"LizardByteDev","company":null,"icon_url":"https://avatars.githubusercontent.com/u/84790584?v=4","repositories_count":41,"last_synced_at":"2025-09-26T04:31:27.802Z","metadata":{"has_sponsors_listing":true,"funding":{"github":["LizardByte"],"patreon":"LizardByte","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://paypal.me/ReenigneArcher"]}},"html_url":"https://github.com/LizardByte","funding_links":["https://github.com/sponsors/LizardByte","https://patreon.com/LizardByte","https://paypal.me/ReenigneArcher"],"total_stars":13194,"followers":790,"following":0,"created_at":"2022-11-14T06:55:30.295Z","updated_at":"2025-09-26T04:31:27.812Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LizardByte","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LizardByte/repositories"},"tags":[{"name":"v2025.612.124814","sha":"5a025cb74cf0b07fd881ff40560db2bbc516f81a","kind":"commit","published_at":"2025-06-12T12:48:14.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2025.612.124814","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2025.612.124814","dependencies_parsed_at":"2025-06-15T06:12:23.154Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2025.612.124814","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.612.124814","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.612.124814/manifests"},{"name":"v2025.612.30407","sha":"d0201ad03e6115aa1c9a839725f870fd37862bb6","kind":"commit","published_at":"2025-06-12T03:04:07.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2025.612.30407","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2025.612.30407","dependencies_parsed_at":"2025-06-13T05:29:54.452Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2025.612.30407","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.612.30407","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.612.30407/manifests"},{"name":"v2025.603.124001","sha":"920cb0f0d94905eb2eb080d1887caabbfccafe78","kind":"commit","published_at":"2025-06-03T12:40:01.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2025.603.124001","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2025.603.124001","dependencies_parsed_at":"2025-06-12T05:18:26.784Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2025.603.124001","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.603.124001","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.603.124001/manifests"},{"name":"v2025.530.174035","sha":"6fe61189717d4cb073a3219e234749125f53b5c2","kind":"commit","published_at":"2025-05-30T17:40:35.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2025.530.174035","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2025.530.174035","dependencies_parsed_at":"2025-06-12T05:18:26.757Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2025.530.174035","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.530.174035","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.530.174035/manifests"},{"name":"v2025.530.173551","sha":"3bcb46343db860c912371de6aa9f0c88bd30cde5","kind":"commit","published_at":"2025-05-30T17:35:51.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2025.530.173551","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2025.530.173551","dependencies_parsed_at":"2025-06-12T05:18:24.712Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2025.530.173551","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.530.173551","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.530.173551/manifests"},{"name":"v2025.426.160528","sha":"f4367d0377eceec7e5e26da8f3863dd365b95a94","kind":"commit","published_at":"2025-04-26T16:05:28.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2025.426.160528","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2025.426.160528","dependencies_parsed_at":"2025-06-12T05:18:26.782Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2025.426.160528","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.426.160528","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.426.160528/manifests"},{"name":"v2025.212.161250","sha":"c9e27312e08a2429e461fa0cd002640bc63e3eb4","kind":"commit","published_at":"2025-02-12T16:12:50.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2025.212.161250","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2025.212.161250","dependencies_parsed_at":"2025-06-12T05:18:26.762Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2025.212.161250","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.212.161250","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2025.212.161250/manifests"},{"name":"v2024.1105.190605","sha":"381f9c338e0aedf001928bf790d789d031e144e5","kind":"commit","published_at":"2024-11-05T19:06:05.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.1105.190605","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.1105.190605","dependencies_parsed_at":"2025-06-12T05:18:26.771Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.1105.190605","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.1105.190605","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.1105.190605/manifests"},{"name":"v2024.1105.190038","sha":"b22b6b3f2804bbb0220f4d36f510f1679357d6b4","kind":"commit","published_at":"2024-11-05T19:00:38.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.1105.190038","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.1105.190038","dependencies_parsed_at":"2025-06-12T05:18:26.765Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.1105.190038","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.1105.190038","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.1105.190038/manifests"},{"name":"v2024.919.163656","sha":"16f114f861a483ca9da3beb5d3ff0a3bad708aad","kind":"commit","published_at":"2024-09-19T16:36:56.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.919.163656","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.919.163656","dependencies_parsed_at":"2025-06-12T05:18:27.285Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.919.163656","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.919.163656","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.919.163656/manifests"},{"name":"v2024.609.5111","sha":"24f68bb394b3cc9ad84583f60c7b279092cea17d","kind":"commit","published_at":"2024-06-09T00:51:09.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.609.5111","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.609.5111","dependencies_parsed_at":"2025-06-12T05:18:27.682Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.609.5111","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.609.5111","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.609.5111/manifests"},{"name":"v2024.608.234222","sha":"fc2c422cb7029c70335f09ca9e272d91fb165961","kind":"commit","published_at":"2024-06-08T23:42:20.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.608.234222","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.608.234222","dependencies_parsed_at":"2025-06-12T05:18:26.994Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.608.234222","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.608.234222","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.608.234222/manifests"},{"name":"v2024.608.233647","sha":"020815cc2d5188e9dc2d4fb00289ca50b062609b","kind":"commit","published_at":"2024-06-08T23:36:45.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.608.233647","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.608.233647","dependencies_parsed_at":"2025-06-12T05:18:26.142Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.608.233647","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.608.233647","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.608.233647/manifests"},{"name":"v2024.520.215755","sha":"b9309c1216b1c5920962516675c00ce6881cf8b5","kind":"commit","published_at":"2024-05-20T21:57:52.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.520.215755","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.520.215755","dependencies_parsed_at":"2025-06-12T05:18:25.045Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.520.215755","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.520.215755","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.520.215755/manifests"},{"name":"v2024.520.214804","sha":"0046f56f01c631322e8c7d0d664c4623594e4a09","kind":"commit","published_at":"2024-05-20T21:48:02.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.520.214804","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.520.214804","dependencies_parsed_at":"2025-06-12T05:18:25.045Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.520.214804","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.520.214804","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.520.214804/manifests"},{"name":"v2024.515.10401","sha":"2d27f6f9419dfcf6e22e247453f1b0cdf255eb41","kind":"commit","published_at":"2024-05-15T01:03:59.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.515.10401","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.515.10401","dependencies_parsed_at":"2025-06-12T05:18:26.929Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.515.10401","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.515.10401","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.515.10401/manifests"},{"name":"v2024.515.5854","sha":"141f071ffe78f8b50343bd1edbd1855a06592b44","kind":"commit","published_at":"2024-05-15T00:58:51.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.515.5854","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.515.5854","dependencies_parsed_at":"2025-06-12T05:18:26.871Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.515.5854","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.515.5854","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.515.5854/manifests"},{"name":"v2024.515.4908","sha":"a0baed2e226938e422e96d59212621d293cd8672","kind":"commit","published_at":"2024-05-15T00:49:06.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.515.4908","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.515.4908","dependencies_parsed_at":"2025-06-12T05:18:27.612Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.515.4908","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.515.4908","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.515.4908/manifests"},{"name":"v2024.511.162516","sha":"838c4d76a69a4e8dc7cdaa455c69be8d2611b52f","kind":"commit","published_at":"2024-05-11T16:25:14.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.511.162516","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.511.162516","dependencies_parsed_at":"2025-06-12T05:18:27.247Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.511.162516","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.511.162516","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.511.162516/manifests"},{"name":"v2024.511.161624","sha":"2934e0f7c33e8e89070aa746ae549f9f629340e9","kind":"commit","published_at":"2024-05-11T16:16:22.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.511.161624","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.511.161624","dependencies_parsed_at":"2025-06-12T05:18:26.916Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.511.161624","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.511.161624","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.511.161624/manifests"},{"name":"v2024.511.160412","sha":"29c763b9fefc93ca7c9b3984884e8e19995ccc9a","kind":"commit","published_at":"2024-05-11T16:04:10.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.511.160412","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.511.160412","dependencies_parsed_at":"2025-06-12T05:18:27.089Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.511.160412","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.511.160412","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.511.160412/manifests"},{"name":"v2024.327.234417","sha":"c33579d46c1f843f81b31badd7709f2791281007","kind":"commit","published_at":"2024-03-27T23:44:15.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.327.234417","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.327.234417","dependencies_parsed_at":"2025-06-12T05:18:27.898Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.327.234417","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.327.234417","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.327.234417/manifests"},{"name":"v2024.202.205923","sha":"6161ea5e0c69bf1b8c5088ade24a072688485dcd","kind":"commit","published_at":"2024-02-02T20:59:20.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.202.205923","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.202.205923","dependencies_parsed_at":"2025-06-12T05:18:27.861Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.202.205923","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.202.205923","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.202.205923/manifests"},{"name":"v2024.101.154024","sha":"83b85307a516f1450995d74ade3e00e4ba6e1804","kind":"commit","published_at":"2024-01-01T15:40:22.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.101.154024","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.101.154024","dependencies_parsed_at":"2025-06-12T05:18:26.942Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.101.154024","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.101.154024","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.101.154024/manifests"},{"name":"v2024.101.153039","sha":"e96aa62941bb9ec998d3f639f0910e72b77bc281","kind":"commit","published_at":"2024-01-01T15:30:36.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2024.101.153039","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2024.101.153039","dependencies_parsed_at":"2025-06-12T05:18:27.099Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2024.101.153039","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.101.153039","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2024.101.153039/manifests"},{"name":"v2023.1226.20556","sha":"db6d99e45ec577e5e444e495f125b86d0fba37dd","kind":"commit","published_at":"2023-12-26T02:05:54.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.1226.20556","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.1226.20556","dependencies_parsed_at":"2025-06-12T05:18:26.870Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.1226.20556","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1226.20556","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1226.20556/manifests"},{"name":"v2023.1226.15322","sha":"9a106a6b282d2d51c763bb4a2a1a99447c7aa79b","kind":"commit","published_at":"2023-12-26T01:53:20.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.1226.15322","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.1226.15322","dependencies_parsed_at":"2025-06-12T05:18:26.861Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.1226.15322","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1226.15322","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1226.15322/manifests"},{"name":"v2023.1219.224247","sha":"81a85c8c19899355ae5b93c4f79dd30780abfdc1","kind":"commit","published_at":"2023-12-19T22:42:44.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.1219.224247","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.1219.224247","dependencies_parsed_at":"2025-06-12T05:18:27.469Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.1219.224247","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1219.224247","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1219.224247/manifests"},{"name":"v2023.1211.161304","sha":"1092e167ef248067651152cd9620e54e0180ce49","kind":"commit","published_at":"2023-12-11T16:13:01.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.1211.161304","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.1211.161304","dependencies_parsed_at":"2025-06-12T05:18:26.936Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.1211.161304","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1211.161304","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1211.161304/manifests"},{"name":"v2023.1210.35516","sha":"5527b5d92aedb497d19165edda5276c0e7b4b5a6","kind":"commit","published_at":"2023-12-10T03:55:14.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.1210.35516","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.1210.35516","dependencies_parsed_at":"2025-06-12T05:18:26.949Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.1210.35516","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1210.35516","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1210.35516/manifests"},{"name":"v2023.1210.33853","sha":"1d641f4954bacce6a7dd128771c1cb1971e290b3","kind":"commit","published_at":"2023-12-10T03:38:51.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.1210.33853","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.1210.33853","dependencies_parsed_at":"2025-06-12T05:18:26.896Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.1210.33853","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1210.33853","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1210.33853/manifests"},{"name":"v2023.1210.31503","sha":"4bb01b529d7871d7ed418e499d084cab43169a0e","kind":"commit","published_at":"2023-12-10T03:15:01.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.1210.31503","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.1210.31503","dependencies_parsed_at":"2025-06-12T05:18:26.915Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.1210.31503","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1210.31503","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1210.31503/manifests"},{"name":"v2023.1207.143017","sha":"2facf9eee4ba541cdc6b32da654943aa994954f5","kind":"commit","published_at":"2023-12-07T14:30:15.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.1207.143017","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.1207.143017","dependencies_parsed_at":"2025-06-12T05:18:27.724Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.1207.143017","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1207.143017","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1207.143017/manifests"},{"name":"v2023.1128.10441","sha":"3cfa37ac41ba8a47f3ae80dedd3035bb9263b2d1","kind":"commit","published_at":"2023-11-28T01:04:38.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.1128.10441","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.1128.10441","dependencies_parsed_at":"2025-06-12T05:18:27.963Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.1128.10441","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1128.10441","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1128.10441/manifests"},{"name":"v2023.1128.4948","sha":"5cd5f38651c554339cbcc1f00a7870d3a8a53ddd","kind":"commit","published_at":"2023-11-28T00:49:45.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.1128.4948","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.1128.4948","dependencies_parsed_at":"2025-06-12T05:18:26.865Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.1128.4948","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1128.4948","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.1128.4948/manifests"},{"name":"v2023.10.31-031431","sha":"8851ba6849c1003134ced0581b34204f0c322cad","kind":"commit","published_at":"2023-10-31T03:14:29.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.10.31-031431","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.10.31-031431","dependencies_parsed_at":"2025-06-12T05:18:26.938Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.10.31-031431","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.10.31-031431","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.10.31-031431/manifests"},{"name":"v2023.10.31-030247","sha":"1ce0b12f3bcf6daffcbd88d815ca1f05708518de","kind":"commit","published_at":"2023-10-31T03:02:45.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.10.31-030247","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.10.31-030247","dependencies_parsed_at":"2025-06-12T05:18:26.923Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.10.31-030247","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.10.31-030247","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.10.31-030247/manifests"},{"name":"v2023.10.31-005636","sha":"21c111eb92a65b4a36ab01f475172b4181797db1","kind":"commit","published_at":"2023-10-31T00:56:34.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.10.31-005636","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.10.31-005636","dependencies_parsed_at":"2025-06-12T05:18:27.140Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.10.31-005636","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.10.31-005636","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.10.31-005636/manifests"},{"name":"v2023.10.23-7bf3fc9","sha":"7bf3fc9c7fcb9ebc8ac3c79c32f60a5438ffdccf","kind":"commit","published_at":"2023-10-23T23:32:36.000Z","download_url":"https://codeload.github.com/LizardByte/setup-python-action/tar.gz/v2023.10.23-7bf3fc9","html_url":"https://github.com/LizardByte/setup-python-action/releases/tag/v2023.10.23-7bf3fc9","dependencies_parsed_at":"2025-06-12T05:18:30.240Z","dependency_job_id":null,"purl":"pkg:github/LizardByte/setup-python-action@v2023.10.23-7bf3fc9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.10.23-7bf3fc9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/tags/v2023.10.23-7bf3fc9/manifests"}]},"repo_metadata_updated_at":"2025-10-12T04:14:33.842Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":34.37225636523266,"dependent_packages_count":0.0,"stargazers_count":null,"forks_count":null,"docker_downloads_count":null,"average":17.18612818261633},"purl":"pkg:githubactions/LizardByte/setup-python-action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/LizardByte/setup-python-action","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/LizardByte/setup-python-action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/LizardByte/setup-python-action/dependencies","status":null,"funding_links":["https://github.com/sponsors/LizardByte","https://patreon.com/LizardByte","https://paypal.me/ReenigneArcher"],"critical":null,"issue_metadata":{"last_synced_at":"2025-08-31T10:58:15.290Z","issues_count":1,"pull_requests_count":16,"avg_time_to_close_issue":51719263.0,"avg_time_to_close_pull_request":1672096.4666666666,"issues_closed_count":1,"pull_requests_closed_count":15,"pull_request_authors_count":3,"issue_authors_count":1,"avg_comments_per_issue":0.0,"avg_comments_per_pull_request":1.375,"merged_pull_requests_count":13,"bot_issues_count":1,"bot_pull_requests_count":9,"past_year_issues_count":0,"past_year_pull_requests_count":16,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":1672096.4666666666,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":15,"past_year_pull_request_authors_count":3,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":1.375,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":9,"past_year_merged_pull_requests_count":13,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/LizardByte%2Fsetup-python-action/issues","maintainers":[{"login":"ReenigneArcher","count":12,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/ReenigneArcher"},{"login":"LizardByte-bot","count":9,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/LizardByte-bot"}],"active_maintainers":[{"login":"ReenigneArcher","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/ReenigneArcher"},{"login":"LizardByte-bot","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/LizardByte-bot"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LizardByte%2Fsetup-python-action/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LizardByte%2Fsetup-python-action/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LizardByte%2Fsetup-python-action/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LizardByte%2Fsetup-python-action/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/LizardByte%2Fsetup-python-action/codemeta","maintainers":[]}