setup-python
setup-python copied to clipboard
Set up your GitHub Actions workflow with a specific version of Python
**Description:** Associate .py with python on Windows when running actions/setup-python@v4 **Justification:** I want to test that my .py have executable permission set relying on shebang line. That passes on Ubuntu....
**Description:** After the download of the version archive it should verify the checksum of the file against the provided `hashes.sha256` for the release in question. **Justification:** This ensures that the...
**Description:** Describe your proposal. Add [Python debug builds](https://docs.python.org/3/using/configure.html#python-debug-build) with [`Py_DEBUG` flag](https://docs.python.org/3/c-api/intro.html#c.Py_DEBUG) by setting [`--with-pydebug`](https://docs.python.org/3/using/configure.html#cmdoption-with-pydebug) and [`--with-trace-refs`](https://docs.python.org/3/using/configure.html#cmdoption-with-trace-refs) configure options. **Justification:** Justification or a use case for your proposal. Some advanced Python...
Thanks for maintaining the project and considering my idea 🙂 **Description:** Allowing the action to accept comma-separated lists of Python versions would enhance the user experience if the versions are...
**Description:** The version '3.11.9' with architecture 'x64' was not found for this operating system. Yesterday everything was working correctly. **Operating System:** PRETTY_NAME="Debian GNU/Linux 12 (bookworm)" NAME="Debian GNU/Linux" VERSION_ID="12" VERSION="12 (bookworm)"...
**Description:** The workflow ```yaml - name: Set up Python uses: actions/setup-python@v5 with: python-version-file: '.python-version' ``` The `.python-version` file ``` # This file is read by the terraform if var.runtime is...
**Description:** Our GH workflows are failing for the combination of Python 3.10 and `macos-latest`. The error we get in the logs looks like this: ``` Installed versions Version 3.[10](https://github.com/quantumlib/Cirq/actions/runs/10498946616/job/30452107299#step:3:11) was...
**Description:** Updates fail condition for getManifestFromRepo function to include instances when github responds with JSON body for API rate limiting, that is incorrectly handled. **Related issue:** https://github.com/actions/setup-python/issues/903 **Check list:** -...
**Description:** setup-action@v5 and python-version: 3.11 leads to pip's warnings about running as root, which should have been suppressed by [the install script](https://github.com/actions/python-versions/blob/main/installers/nix-setup-template.sh) on self-hosted runner and GHES 3.12.8. **Action version:**...
**Description:** Since a week or so, some commands that come from Python packages (e.g. `coveralls`) are no longer found in the PATH under some conditions (see below). Our test workflow...