Releases: actions/setup-python
v4.8.0
What's Changed
In scope of this release we added support for GraalPy (#694). You can use this snippet to set up GraalPy:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 'graalpy-22.3'
- run: python my_script.py
Besides, the release contains such changes as:
- Trim python version when reading from file by @FerranPares in #628
- Use non-deprecated versions in examples by @jeffwidman in #724
- Change deprecation comment to past tense by @jeffwidman in #723
- Bump @babel/traverse from 7.9.0 to 7.23.2 by @dependabot in #743
- advanced-usage.md: Encourage the use actions/checkout@v4 by @cclauss in #729
- Examples now use checkout@v4 by @simonw in #738
- Update actions/checkout to v4 by @dmitry-shibanov in #761
New Contributors
- @FerranPares made their first contribution in #628
- @timfel made their first contribution in #694
- @jeffwidman made their first contribution in #724
Full Changelog: v4...v4.8.0
v4.7.1
What's Changed
- Bump word-wrap from 1.2.3 to 1.2.4 by @dependabot in #702
- Add range validation for toml files by @dmitry-shibanov in #726
Full Changelog: v4...v4.7.1
v4.7.0
In scope of this release, the support for reading python version from pyproject.toml was added (#669).
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version-file: pyproject.toml
Besides, it includes such changes as:
- Bump tough-cookie and @azure/ms-rest-js by @dependabot in #697
- Bump semver from 7.3.8 to 7.5.2 by @dependabot in #692
- Fix typos found by codespell by @DimitriPapadopoulos in #650
New Contributors
- @dariocurr made their first contribution in #669
- @DimitriPapadopoulos made their first contribution in #650
Full Changelog: v4...v4.7.0
v3.1.4
What's Changed
In the scope of this patch release, the warning for deprecating Python 2.x was added in #674 by @dmitry-shibanov
For more information, check out #672
Full Changelog: v3...v3.1.4
v2.3.4
What's Changed
In the scope of this patch release, the warning for deprecating Python 2.x was added in #675 by @dmitry-shibanov
For more information, check out #672
Full Changelog: v2...v2.3.4
v4.6.1
What's Changed
- Fix
allow-prereleases
sample configuration by @mayeut in #615 - Fix a incorrect link advanced-usage.md by @siyuan0322 in #657
- Remove implicit dependency by @nikolai-laevskii in #668
- Automatic update of configuration files from 05/23/2023 by @github-actions in #671
- Add warning for python 2.7 on release/v4 by @dmitry-shibanov in #673
New Contributors
- @siyuan0322 made their first contribution in #657
- @nikolai-laevskii made their first contribution in #668
Full Changelog: v4...v4.6.1
Add allow-prereleases input
In scope of this release we added a new input (allow-prereleases
) to allow falling back to pre-release versions of Python when a matching GA version of Python is not available
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.12
allow-prereleases: true
Besides, we added such changes as:
Update actions/core to 1.10.0 for v3
In scope of this release we update actions/core to 1.10.0 for v3 major tag: #624
Update actions/core to 1.10.0 for v1
In scope of this release we update actions/core to 1.10.0 for v1 major tag: #625