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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0


## [Unreleased]
### Changed
- Python default versions instaled with pyenv to (`3.11`, `3.12`, `3.13`, `3.14`).

## [1.4.0] - 2025-05-31
### Added
Expand Down
8 changes: 4 additions & 4 deletions docs/configuration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,10 +315,10 @@ a `<target-os>.config.yml` file and setting the overrides in that file. e.g.:
- inkscape

pyenv_python_versions:
- 3.10.16
- 3.11.11
- 3.12.8
- 3.13.1
- 3.11.14
- 3.12.12
- 3.13.11
- 3.14.2
```

!!! tip "Advanced Role Configuration"
Expand Down
3 changes: 2 additions & 1 deletion playbooks/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
environment:
# Fix first run path
PATH: "{{ homebrew_brew_bin_path }}:{{ homebrew_brew_sbin_path }}:/usr/local/bin:{{ ansible_env.PATH }}"
when: mas_installed_apps or mas_installed_app_ids
when: (mas_installed_apps | default([]) | length > 0) or
(mas_installed_app_ids | default([]) | length > 0)
tags: ['mas']
- role: geerlingguy.mac.dock
environment:
Expand Down
2 changes: 1 addition & 1 deletion roles/pyenv/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This role provides several variables for configuration. Below are the key variab
- `pyenv_root`: (Default: `"{{ ansible_env.HOME }}/.pyenv"`)
The directory where pyenv will be installed.

- `pyenv_python_versions`: (Default: `[3.10, 3.11, 3.12, 3.13]`)
- `pyenv_python_versions`: (Default: `[3.11, 3.12, 3.13, 3.14]`)
A list of Python versions to be installed by pyenv.

- `pyenv_update`: (Default: `false`)
Expand Down
8 changes: 4 additions & 4 deletions roles/pyenv/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
pyenv_root: "{{ ansible_env.HOME }}/.pyenv"

pyenv_python_versions:
- 3.10.16
- 3.11.11
- 3.12.8
- 3.13.1
- 3.11.14
- 3.12.12
- 3.13.11
- 3.14.2

pyenv_update: false

Expand Down