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
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
steps:
- uses: actions/checkout@v6.0.1

- name: Set up Python 3.11
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: "3.14"

- name: Install system deps
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
with:
ref: develop

- name: Set up Python 3.11
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: "3.14"

- name: Install system deps
shell: bash
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
steps:
- uses: actions/checkout@v6.0.1

- name: Set up Python 3.11
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: "3.14"

- name: Install system deps
shell: bash
Expand Down Expand Up @@ -49,10 +49,10 @@ jobs:
steps:
- uses: actions/checkout@v6.0.1

- name: Set up Python 3.11
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: "3.14"

- name: Install system deps
shell: bash
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ 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`).
- Updated dev dependencies.

## [1.4.0] - 2025-05-31
### Added
Expand Down
4 changes: 2 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ the differents supported targets.

```console
$ poetry install --no-root
Using python3.11 (3.11.11)
Using python3.14 (3.14.2)
Creating virtualenv .venv
Installing dependencies from lock file

Expand All @@ -105,7 +105,7 @@ the differents supported targets.

```console
$ poetry shell
Using python3.11 (3.11.11)
Using python3.14 (3.14.2)
Spawning shell within .venv
(dev-setup)$
```
Expand Down
2,126 changes: 1,141 additions & 985 deletions poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ package-mode = false
"Bug Tracker" = "https://github.com/fedejaure/dev-setup/issues"

[tool.poetry.dependencies]
python = "<3.12,>=3.11"
ansible = "^12.3.0"
python = "<3.15,>=3.14"
ansible = "^13.1.0"

[tool.poetry.group.dev.dependencies]
pre-commit = "^4.5.1"
Expand All @@ -29,7 +29,7 @@ isort = "^7.0.0"
black = "^25.12.0"
ruff = "^0.14.10"
yamllint = "^1.37.1"
ansible-lint = {version = "^25.12.1", markers = "platform_system != 'Windows'"}
ansible-lint = {version = "^25.12.2", markers = "platform_system != 'Windows'"}

[tool.poetry.group.security.dependencies]
safety = "^3.7.0"
Expand Down