Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: actions/setup-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.4.0
Choose a base ref
...
head repository: actions/setup-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.5.0
Choose a head ref
  • 6 commits
  • 54 files changed
  • 6 contributors

Commits on Feb 5, 2025

  1. fix: install PyPy on Linux ARM64 (#1011)

    * ci: check non-eol versions of PyPy are available on all runners
    
    * fix: install PyPy on Linux ARM64
    
    * ci: remove eol ubuntu-20.04
    mayeut authored Feb 5, 2025
    Copy the full SHA
    8039c45 View commit details

Commits on Feb 18, 2025

  1. Bump @vercel/ncc from 0.38.1 to 0.38.3 (#1016)

    * Bump @vercel/ncc from 0.38.1 to 0.38.3
    
    Bumps [@vercel/ncc](https://github.com/vercel/ncc) from 0.38.1 to 0.38.3.
    - [Release notes](https://github.com/vercel/ncc/releases)
    - [Commits](vercel/ncc@0.38.1...0.38.3)
    
    ---
    updated-dependencies:
    - dependency-name: "@vercel/ncc"
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    * check failure fix
    
    ---------
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com>
    dependabot[bot] and aparnajyothi-y authored Feb 18, 2025
    Copy the full SHA
    6ca8e85 View commit details

Commits on Mar 4, 2025

  1. Support free threaded Python versions like '3.13t' (#973)

    * Support free threaded Python versions like '3.13t'
    
    Python wheels, pyenv, and a number of other tools use 't' in the Python
    version number to identify free threaded builds. For example, '3.13t',
    '3.14.0a1', '3.14t-dev'.
    
    This PR supports that syntax in `actions/setup-python`, strips the "t",
    and adds "-freethreading" to the architecture to select the correct
    Python version.
    
    See #771
    
    * Add free threading to advanced usage documentation
    
    * Fix desugaring of `3.13.1t` and add test case.
    
    * Add freethreaded input and fix handling of prerelease versions
    
    * Fix lint
    
    * Add 't' suffix to python-version output
    
    * Use distinct cache key for free threaded Python
    
    * Remove support for syntax like '3.14.0a1'
    
    * Clarify use of 't' suffix
    
    * Improve error message when trying to use free threaded Python versions before 3.13
    colesbury authored Mar 4, 2025
    Copy the full SHA
    9e62be8 View commit details

Commits on Mar 12, 2025

  1. Bump @actions/glob from 0.4.0 to 0.5.0 (#1015)

    * Bump @actions/glob from 0.4.0 to 0.5.0
    
    Bumps [@actions/glob](https://github.com/actions/toolkit/tree/HEAD/packages/glob) from 0.4.0 to 0.5.0.
    - [Changelog](https://github.com/actions/toolkit/blob/main/packages/glob/RELEASES.md)
    - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/glob)
    
    ---
    updated-dependencies:
    - dependency-name: "@actions/glob"
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    * fix for check failures
    
    ---------
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com>
    dependabot[bot] and aparnajyothi-y authored Mar 12, 2025
    Copy the full SHA
    6fd11e1 View commit details

Commits on Mar 13, 2025

  1. Add support for .tool-versions file in setup-python (#1043)

    * add support for .tool-versions file
    
    * update regex
    
    * optimize code
    
    * update test-python.yml for .tool-versions
    
    * fix format-check errors
    
    * fix formatting in test-python.yml
    
    * Fix test-python.yml error
    
    * workflow update with latest versions
    
    * update test cases
    
    * fix lint issue
    mahabaleshwars authored Mar 13, 2025
    Copy the full SHA
    19e4675 View commit details

Commits on Mar 24, 2025

  1. Add e2e Testing for free threaded and Bump @action/cache from 4.0.0 t…

    …o 4.0.3 (#1056)
    
    * include freethread e2e testing and upgrade cache from 4.0.0 to 4.0.2
    
    * include verify gil step and validated python version
    
    * Rename files
    
    * include ubuntu-arm runners for testing
    priya-kinthali authored Mar 24, 2025
    Copy the full SHA
    8d9ed9a View commit details
Showing with 5,037 additions and 13,858 deletions.
  1. +164 −0 .github/workflows/e2e-cache-freethreaded.yml
  2. +109 −10 .github/workflows/e2e-cache.yml
  3. +2 −0 .github/workflows/e2e-tests.yml
  4. +20 −2 .github/workflows/test-graalpy.yml
  5. +101 −8 .github/workflows/test-pypy.yml
  6. +486 −0 .github/workflows/test-python-freethreaded.yml
  7. +106 −21 .github/workflows/test-python.yml
  8. +1 −1 .licenses/npm/@actions/cache.dep.yml
  9. +1 −1 .licenses/npm/@actions/{glob-0.4.0.dep.yml → glob-0.5.0.dep.yml}
  10. +1 −1 .licenses/npm/@protobuf-ts/plugin-framework.dep.yml
  11. +1 −1 .licenses/npm/@protobuf-ts/plugin.dep.yml
  12. +28 −6 .licenses/npm/@protobuf-ts/protoc.dep.yml
  13. +1 −1 .licenses/npm/@protobuf-ts/runtime-rpc.dep.yml
  14. +1 −1 .licenses/npm/@protobuf-ts/runtime.dep.yml
  15. +0 −42 .licenses/npm/camel-case.dep.yml
  16. +0 −33 .licenses/npm/commander.dep.yml
  17. +0 −32 .licenses/npm/dot-object.dep.yml
  18. +0 −55 .licenses/npm/fs.realpath.dep.yml
  19. +0 −32 .licenses/npm/glob.dep.yml
  20. +0 −26 .licenses/npm/inflight.dep.yml
  21. +0 −28 .licenses/npm/inherits.dep.yml
  22. +0 −58 .licenses/npm/lodash.dep.yml
  23. +0 −42 .licenses/npm/lower-case.dep.yml
  24. +0 −42 .licenses/npm/no-case.dep.yml
  25. +0 −26 .licenses/npm/once.dep.yml
  26. +0 −42 .licenses/npm/pascal-case.dep.yml
  27. +0 −34 .licenses/npm/path-is-absolute.dep.yml
  28. +0 −46 .licenses/npm/path-to-regexp.dep.yml
  29. +0 −3,585 .licenses/npm/prettier.dep.yml
  30. +0 −216 .licenses/npm/ts-poet.dep.yml
  31. +0 −11 .licenses/npm/twirp-ts.dep.yml
  32. +0 −26 .licenses/npm/wrappy.dep.yml
  33. +0 −24 .licenses/npm/yaml.dep.yml
  34. +10 −0 README.md
  35. +1 −1 __tests__/data/Pipfile
  36. +60 −28 __tests__/data/Pipfile.lock
  37. +1 −1 __tests__/data/pipenv-requirements.txt
  38. +61 −47 __tests__/data/poetry.lock
  39. +2 −2 __tests__/data/pyproject.toml
  40. +1 −1 __tests__/data/requirements.txt
  41. +43 −0 __tests__/find-python.test.ts
  42. +32 −11 __tests__/finder.test.ts
  43. +78 −1 __tests__/utils.test.ts
  44. +3 −0 __tests__/verify-freethreaded.py
  45. +3 −0 action.yml
  46. +1,473 −4,249 dist/cache-save/index.js
  47. +2,020 −4,675 dist/setup/index.js
  48. +36 −2 docs/advanced-usage.md
  49. +81 −364 package-lock.json
  50. +3 −3 package.json
  51. +59 −13 src/find-python.ts
  52. +10 −5 src/install-pypy.ts
  53. +3 −1 src/setup-python.ts
  54. +35 −1 src/utils.ts
164 changes: 164 additions & 0 deletions .github/workflows/e2e-cache-freethreaded.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
name: e2e-cache freethread

on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- main
- releases/*
paths-ignore:
- '**.md'
workflow_dispatch:

permissions:
contents: read
jobs:
python-pip-dependencies-caching:
name: Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
[
ubuntu-latest,
ubuntu-22.04,
ubuntu-24.04-arm,
ubuntu-22.04-arm,
windows-latest,
macos-latest,
macos-13
]
python-version: [3.13.0t, 3.13.1t, 3.13.2t]
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: ./
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: pip install numpy pandas requests

python-pipenv-dependencies-caching:
name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
[
ubuntu-latest,
ubuntu-24.04-arm,
ubuntu-22.04,
ubuntu-22.04-arm,
windows-latest,
macos-latest,
macos-13
]
python-version: [3.13.0t, 3.13.1t, 3.13.2t]
steps:
- uses: actions/checkout@v4
- name: Setup Python
id: cache-pipenv
uses: ./
with:
python-version: ${{ matrix.python-version }}
cache: 'pipenv'
- name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
- name: Install dependencies
run: pipenv install requests

python-poetry-dependencies-caching:
name: Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
[
ubuntu-latest,
ubuntu-22.04,
ubuntu-24.04-arm,
ubuntu-22.04-arm,
windows-latest,
macos-latest,
macos-13
]
python-version: [3.13.0, 3.13.1, 3.13.2]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Init pyproject.toml
run: mv ./__tests__/data/pyproject.toml .
- name: Setup Python
uses: ./
with:
python-version: ${{ matrix.python-version }}
freethreaded: true
cache: 'poetry'
- name: Install dependencies
run: poetry install --no-root

python-pip-dependencies-caching-path:
name: Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }}, caching path)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
[
ubuntu-latest,
ubuntu-22.04,
ubuntu-24.04-arm,
ubuntu-22.04-arm,
windows-latest,
macos-latest,
macos-13
]
python-version: [3.13.0t, 3.13.1t, 3.13.2t]
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: ./
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: __tests__/data/requirements.txt
- name: Install dependencies
run: pip install numpy pandas requests

python-pipenv-dependencies-caching-path:
name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }}, caching path)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
[
ubuntu-latest,
ubuntu-22.04,
ubuntu-24.04-arm,
ubuntu-22.04-arm,
windows-latest,
macos-latest,
macos-13
]
python-version: [3.13.0t, 3.13.1t, 3.13.2t]
steps:
- uses: actions/checkout@v4
- name: Setup Python
id: cache-pipenv
uses: ./
with:
python-version: ${{ matrix.python-version }}
cache: 'pipenv'
cache-dependency-path: '**/pipenv-requirements.txt'
- name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
- name: Install dependencies
run: pipenv install requests
119 changes: 109 additions & 10 deletions .github/workflows/e2e-cache.yml
Original file line number Diff line number Diff line change
@@ -21,8 +21,30 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-13]
python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x']
os:
[
ubuntu-latest,
ubuntu-24.04-arm,
ubuntu-22.04,
ubuntu-22.04-arm,
windows-latest,
macos-latest,
macos-13
]
python-version:
[
'3.9',
'pypy-3.9-v7.x',
'3.10',
'pypy-3.10-v7.x',
'3.11',
'pypy-3.11-v7.x',
'3.12',
'3.13'
]
exclude:
- os: windows-latest
python-version: pypy-3.11-v7.x
steps:
- uses: actions/checkout@v4
- name: Setup Python
@@ -39,8 +61,25 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-13]
python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x']
os:
[
ubuntu-latest,
ubuntu-24.04-arm,
ubuntu-22.04,
ubuntu-22.04-arm,
windows-latest,
macos-latest,
macos-13
]
python-version:
['3.10', 'pypy-3.10-v7.x', '3.11', 'pypy-3.11-v7.x', '3.12', '3.13']
exclude:
- os: windows-latest
python-version: pypy-3.11-v7.x
- os: ubuntu-22.04
python-version: pypy-3.11-v7.x
- os: ubuntu-22.04-arm
python-version: pypy-3.11-v7.x
steps:
- uses: actions/checkout@v4
- name: Setup Python
@@ -75,8 +114,27 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-13]
python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x']
os:
[
ubuntu-latest,
ubuntu-24.04-arm,
ubuntu-22.04,
ubuntu-22.04-arm,
windows-latest,
macos-latest,
macos-13
]
python-version:
[
'3.9',
'pypy-3.9-v7.x',
'3.10',
'pypy-3.10-v7.x',
'3.11',
'pypy-3.11-v7.x',
'3.12',
'3.13'
]
steps:
- uses: actions/checkout@v4
- name: Install poetry
@@ -97,8 +155,30 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-13]
python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x']
os:
[
ubuntu-latest,
ubuntu-24.04-arm,
ubuntu-22.04,
ubuntu-22.04-arm,
windows-latest,
macos-latest,
macos-13
]
python-version:
[
'3.9',
'pypy-3.9-v7.x',
'3.10',
'pypy-3.10-v7.x',
'3.11',
'pypy-3.11-v7.x',
'3.12',
'3.13'
]
exclude:
- os: windows-latest
python-version: pypy-3.11-v7.x
steps:
- uses: actions/checkout@v4
- name: Setup Python
@@ -116,8 +196,27 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-13]
python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x']
os:
[
ubuntu-latest,
ubuntu-24.04-arm,
ubuntu-22.04,
ubuntu-22.04-arm,
windows-latest,
macos-latest,
macos-13
]
python-version:
['3.10', 'pypy-3.10-v7.x', '3.11', 'pypy-3.11-v7.x', '3.12', '3.13']
exclude:
- os: windows-latest
python-version: pypy-3.11-v7.x
- os: ubuntu-22.04
python-version: pypy-3.11-v7.x
- os: ubuntu-22.04-arm
python-version: pypy-3.10-v7.x
- os: ubuntu-22.04-arm
python-version: pypy-3.11-v7.x
steps:
- uses: actions/checkout@v4
- name: Setup Python
2 changes: 2 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
@@ -22,7 +22,9 @@ jobs:
ubuntu-20.04,
windows-latest,
ubuntu-22.04,
ubuntu-22.04-arm,
ubuntu-latest,
ubuntu-24.04-arm,
macos-latest,
macos-13
]
22 changes: 20 additions & 2 deletions .github/workflows/test-graalpy.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,16 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-20.04, ubuntu-latest, macos-13]
os:
[
macos-latest,
ubuntu-20.04,
ubuntu-22.04,
ubuntu-22.04-arm,
ubuntu-24.04-arm,
ubuntu-latest,
macos-13
]
graalpy:
- 'graalpy-22.3'
- 'graalpy-23.0'
@@ -65,7 +74,16 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-20.04, ubuntu-latest, macos-13]
os:
[
macos-latest,
ubuntu-20.04,
ubuntu-22.04,
ubuntu-22.04-arm,
ubuntu-24.04-arm,
ubuntu-latest,
macos-13
]
graalpy: ['graalpy22.3', 'graalpy23.0', 'graalpy23.1', 'graalpy24.1']

steps:
Loading