From ea04f3970907b98d0f22b9a372380f89385b46d7 Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Wed, 29 Apr 2020 13:56:43 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc45f2a5..751682f8 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ Check out our detailed guide on using [Python with GitHub Actions](https://help. # Available versions of Python -`setup-python` is able to configure python from two sources +`setup-python` is able to configure Python from two sources - Preinstalled versions of Python in the tools cache on GitHub-hosted runners - 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) From c3c0c30edab7d588b7a0118331444de348eef91a Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Wed, 29 Apr 2020 13:57:20 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 751682f8..8035c31c 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ GitHub virtual environments are setup in [actions/virtual-environments](https:// If you would like to use `setup-python` and a self-hosted runner, you have two options - Setup a tools cache locally and download all the versions of Python & PyPy that you would like once - - Takes a little bit to time to initially setup + - Takes a little bit of time to initially setup - This will be the most stable and fastest option long-term as it will require no extra downloads every-time there is a run - Download and setup a version of python every-time - Requires no extra setup (good if you want to quickly get up and running, discouraged for long term use) From 8b9b081ff72ac0041f89572265e6a311042f423c Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Wed, 29 Apr 2020 15:08:29 +0200 Subject: [PATCH 3/4] Apply suggestions from code review Co-Authored-By: Brian Cristante <33549821+brcrista@users.noreply.github.com> --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8035c31c..f4a4a0a3 100644 --- a/README.md +++ b/README.md @@ -91,10 +91,10 @@ Check out our detailed guide on using [Python with GitHub Actions](https://help. # Available versions of Python -`setup-python` is able to configure Python from two sources +`setup-python` is able to configure Python from two sources: - Preinstalled versions of Python in the tools cache on GitHub-hosted runners - - 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) + - 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). - For every minor version of Python, expect only the latest patch to be preinstalled. See [Semantic Versioning](https://semver.org/) for more information - 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 - Downloadable Python versions from GitHub Releases ([actions/python-versions](https://github.com/actions/python-versions/releases)) @@ -147,14 +147,14 @@ If you would like to use `setup-python` and a self-hosted runner, you have two o # Need to open an issue? -Python versions that we compile and setup 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: +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: - something might be compiled incorrectly - certain modules might be missing - there is a version of Python that you would like that is currently not available -If you suspect something might be wrong with the tools cache or how Python gets installed on GitHub hosted runners, please open an issue in [actions/virtual-environments](https://github.com/actions/virtual-environments) +If you suspect something might be wrong with the tools cache or how Python gets installed on GitHub hosted runners, please open an issue in [actions/virtual-environments](https://github.com/actions/virtual-environments). -Any remaining issues can be filed in this repository +Any remaining issues can be filed in this repository. # License From 55306a552e9a92a3bac6eac208bf18cedcea1fd9 Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Wed, 29 Apr 2020 15:54:54 +0200 Subject: [PATCH 4/4] Update README.md Co-Authored-By: Brian Cristante <33549821+brcrista@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f4a4a0a3..27ddf524 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ jobs: build: runs-on: ubuntu-latest strategy: - python-version: [3.5.4, 3.6.6, 3.7.4, 3.8.1] + python-version: [3.5, 3.6, 3.7.4, 3.8] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v1