You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use GitHub releases to download python versions (actions#85)
This pull-request improves `setup-python` action to add ability to download specific version of Python on flight if it is not available by default.
**Details:**
`setup-python` action will download and install specific Python version from GitHub releases ([actions/python-versions](https://github.com/actions/python-versions/releases)) in case the version is not found in the local cache. All versions of Python available for installation are published in [actions/python-versions](https://github.com/actions/python-versions) repository.
All available versions are listed in the [version-manifest.json](https://github.com/actions/python-versions/blob/master/versions-manifest.json) file.
**Installation time:**
- Ubuntu / macOS: 10-20 seconds
- Windows: ~ 1 minute (mostly related to fact that we use MSI installer for Python on Windows)
Co-authored-by: MaksimZhukov <v-mazhuk@microsoft.com>
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
Co-authored-by: Brian Cristante <33549821+brcrista@users.noreply.github.com>
Copy file name to clipboardExpand all lines: README.md
+60-19Lines changed: 60 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,9 @@
6
6
7
7
This action sets up a Python environment for use in actions by:
8
8
9
-
- optionally installing a version of Python and adding to PATH. Note that this action only uses versions of Python already installed in the cache. The action will fail if no matching versions are found.
9
+
- optionally installing and adding to PATH a version of Python that is already installed in the tools cache
10
+
- downloading, installing and adding to PATH an available version of Python from GitHub Releases ([actions/python-versions](https://github.com/actions/python-versions/releases)) if a specific version is not available in the tools cache
11
+
- failing if a specific version of Python is not preinstalled or available for download
10
12
- registering problem matchers for error output
11
13
12
14
# Usage
@@ -67,13 +69,43 @@ jobs:
67
69
run: python -c "import sys; print(sys.version)"
68
70
```
69
71
72
+
Download and set up a version of Python that does not come preinstalled on an image:
73
+
```yaml
74
+
jobs:
75
+
build:
76
+
runs-on: ubuntu-latest
77
+
strategy:
78
+
# in this example, there is a newer version already installed, 3.7.7, so the older version will be downloaded
79
+
python-version: [3.5, 3.6, 3.7.4, 3.8]
80
+
steps:
81
+
- uses: actions/checkout@v2
82
+
- uses: actions/setup-python@v1
83
+
with:
84
+
python-version: ${{ matrix.python }}
85
+
- run: python my_script.py
86
+
87
+
```
88
+
70
89
# Getting started with Python + Actions
71
90
72
91
Check out our detailed guide on using [Python with GitHub Actions](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/using-python-with-github-actions).
73
92
93
+
# Available versions of Python
94
+
95
+
`setup-python` is able to configure Python from two sources:
96
+
97
+
- Preinstalled versions of Python in the tools cache on GitHub-hosted runners
98
+
- For detailed information regarding the available versions of Python that are installed see [Software installed on GitHub-hosted runners](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/software-installed-on-github-hosted-runners).
99
+
- For every minor version of Python, expect only the latest patch to be preinstalled.
100
+
- If `3.8.1` is installed for example, and `3.8.2` is released, expect `3.8.1` to be removed and replaced by `3.8.2` in the tools cache.
101
+
- If the exact patch version doesn't matter to you, specifying just the major and minor version will get you the latest preinstalled patch version. In the previous example, the version spec `3.8` will use the `3.8.2` Python version found in the cache.
102
+
- Downloadable Python versions from GitHub Releases ([actions/python-versions](https://github.com/actions/python-versions/releases))
103
+
- All available versions are listed in the [version-manifest.json](https://github.com/actions/python-versions/blob/master/versions-manifest.json) file.
104
+
- If there is a specific version of Python that is not available, you can open an issue in the `python-versions` repository.
105
+
74
106
# Hosted Tool Cache
75
107
76
-
GitHub hosted runners have a tools cache that comes with Python + PyPy already installed. This tools cache helps speed up runs and tool setup by not requiring any new downloads. There is an environment variable called `RUNNER_TOOL_CACHE` on each runner that describes the location of this tools cache and there is where you will find Python and PyPy installed. `setup-python` works by taking a specific version of Python or PyPy in this tools cache and adding it to PATH.
108
+
GitHub hosted runners have a tools cache that comes with a few versions of Python + PyPy already installed. This tools cache helps speed up runs and tool setup by not requiring any new downloads. There is an environment variable called `RUNNER_TOOL_CACHE` on each runner that describes the location of this tools cache and there is where you will find Python and PyPy installed. `setup-python` works by taking a specific version of Python
10000
or PyPy in this tools cache and adding it to PATH.
77
109
78
110
|| Location |
79
111
|------|-------|
@@ -85,35 +117,44 @@ GitHub virtual environments are setup in [actions/virtual-environments](https://
85
117
-[Tools cache setup for Ubuntu](https://github.com/actions/virtual-environments/blob/master/images/linux/scripts/installers/hosted-tool-cache.sh)
86
118
-[Tools cache setup for Windows](https://github.com/actions/virtual-environments/blob/master/images/win/scripts/Installers/Download-ToolCache.ps1)
87
119
120
+
# Specifying a Python version
121
+
122
+
If there is a specific version of Python that you need and you don't want to worry about any potential breaking changes due to patch updates (going from `3.7.5` to `3.7.6` for example), you should specify the exact major, minor, and patch version (such as `3.7.5`)
123
+
- The only downside to this is that set up will take a little longer since the exact version will have to be downloaded if the exact version is not already installed on the runner due to more recent versions.
124
+
- MSI installers are used on Windows for this, so runs will take a little longer to set up vs Mac and Linux.
125
+
126
+
You should specify only a major and minor version if you are okay with the most recent patch version being used.
127
+
- There will be a single patch version already installed on each runner for every minor version of Python that is supported.
128
+
- The patch version that will be preinstalled, will generally be the latest and every time there is a new patch released, the older version that is preinstalled will be replaced.
129
+
- Using the most recent patch version will result in a very quick setup since no downloads will be required since a locally installed version Python on the runner will be used.
130
+
88
131
# Using `setup-python` with a self hosted runner
89
132
90
-
If you would like to use `setup-python` on a self-hosted runner, you will need to download all versions of Python & PyPy that you would like and setup a similar tools cache locally for your runner.
91
-
92
-
- Create an global environment variable called `AGENT_TOOLSDIRECTORY` that will point to the root directory of where you want the tools installed. The env variable is preferrably global as it must be set in the shell that will install the tools cache, along with the shell that the runner will be using.
93
-
- This env variable is used internally by the runner to set the `RUNNER_TOOL_CACHE` env variable
94
-
- Example for Administrator Powershell: `[System.Environment]::SetEnvironmentVariable("AGENT_TOOLSDIRECTORY", "C:\hostedtoolcache\windows", [System.EnvironmentVariableTarget]::Machine)`(restart the shell afterwards)
95
-
- Download the appropriate NPM packages from the [GitHub Actions NPM registry](https://github.com/orgs/actions/packages)
96
-
- Make sure to have `npm` installed, and then [configure npm for use with GitHub packages](https://help.github.com/en/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages#authenticating-to-github-package-registry)
97
-
- Create an empty npm project for easier installation (`npm init`) in the tools cache directory. You can delete `package.json`, `package.lock.json` and `node_modules` after all tools get installed
98
-
- Before downloading a specific package, create an empty folder for the version of Python/PyPY that is being installed. If downloading Python 3.6.8 for example, create `C:\hostedtoolcache\windows\Python\3.6.8`
99
-
- Once configured, download a specific package by calling `npm install`. Note (if downloading a PyPy package on Windows, you will need 7zip installed along with `7z.exe` added to your PATH)
100
-
- Each NPM package has multiple versions that determine the version of Python or PyPy that should be installed.
101
-
- `npm install @actions/toolcache-python-windows-x64@3.7.61579791175`for example installs Python 3.7.6 while `npm install @actions/toolcache-python-windows-x64@3.6.81579791177` installs Python 3.6.8
102
-
- You can browse and find all available versions of a package by searching the GitHub Actions NPM registry
If you would like to use `setup-python` and a self-hosted runner, there isn't much that you need to do. When `setup-python` is run for the first time with a version of Python that it doesn't have, it will download the appropriate version, and set up the tools cache on your machine. Any subsequent runs will use the Python versions that were previously downloaded.
134
+
135
+
A few things to look out for when `setup-python` is first setting up the tools cache
136
+
- If using Windows, your runner needs to be running as an administrator so that the appropriate directories and files can be setup. On Linux and Mac, you also need to be running with elevated permissions
137
+
- On Windows, you need `7zip` installed and added to your `PATH` so that files can be extracted properly during setup
138
+
- MSI installers are used when setting up Python on Windows. A word of caution as MSI installers update registry settings
139
+
- The 3.8 MSI installer for Windows will not let you install another 3.8 version of Python. If `setup-python` fails for a 3.8 version of Python, make sure any previously installed versions are removed by going to "Apps & Features" in the Settings app.
104
140
105
141
# Using Python without `setup-python`
106
142
107
143
`setup-python` helps keep your dependencies explicit and ensures consistent behavior between different runners. If you use `python` in a shell on a GitHub hosted runner without `setup-python` it will default to whatever is in PATH. The default version of Python in PATH vary between runners and can change unexpectedly so we recommend you always use `setup-python`.
108
144
109
-
# Available versions of Python
145
+
# Need to open an issue?
146
+
147
+
Python versions available for `setup-python` can be found in the [actions/python-versions](https://github.com/actions/python-versions) repository. You can see the build scripts, configurations, and everything that is used. You should open an issue in the `python-versions` repository if:
148
+
- something might be compiled incorrectly
149
+
- certain modules might be missing
150
+
- there is a version of Python that you would like that is currently not available
110
151
111
-
For detailed information regarding the available versions of Python that are installed see [Software installed on GitHub-hosted runners](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/software-installed-on-github-hosted-runners)
152
+
Any remaining issues can be filed in this repository
112
153
113
154
# License
114
155
115
156
The scripts and documentation in this project are released under the [MIT License](LICENSE)
116
157
117
158
# Contributions
118
159
119
-
Contributions are welcome! See [Contributor's Guide](docs/contributors.md)
160
+
Contributions are welcome! See our[Contributor's Guide](docs/contributors.md)
0 commit comments