Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ inputs:
freethreaded:
description: "When 'true', use the freethreaded version of Python."
default: false
pip-version:
description: "Used to specify the version of pip to install with the Python. Supported format: major[.minor][.patch]."
pip-install:
description: "Used to specify the packages to install with pip after setting up Python. Can be a requirements file or package names."
outputs:
python-version:
description: "The installed Python or PyPy version. Useful when given a version range as input."
Expand Down Expand Up @@ -75,8 +79,5 @@ runs:
cache-dependency-path: ${{ inputs.cache-dependency-path }}
update-environment: ${{ inputs.update-environment }}
freethreaded: ${{ steps.build.outputs.freethreaded }}
- run: ${{ github.action_path }}/setup_pip.ps1
shell: pwsh
env:
PYTHON_VERSION: ${{ steps.setup.outputs.python-version }}
SETUP_PYTHON_PATH: ${{ steps.setup.outputs.python-path }}
pip-version: ${{ inputs.pip-version }}
pip-install: ${{ inputs.pip-install }}
29 changes: 0 additions & 29 deletions setup_pip.ps1

This file was deleted.

Loading