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
6 changes: 3 additions & 3 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.2

- name: Set up Python 3.13
uses: actions/setup-python@v6
- name: Set up Python
uses: actions/setup-python@v6.2.0
with:
python-version: "3.13"
python-version-file: '.python-version'

- name: Install system deps
shell: bash
Expand Down
6 changes: 3 additions & 3 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: main

- name: Set up Python 3.13
uses: actions/setup-python@v6
- name: Set up Python
uses: actions/setup-python@v6.2.0
with:
python-version: "3.13"
python-version-file: '.python-version'

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

- name: Set up Python 3.13
uses: actions/setup-python@v6
- name: Set up Python
uses: actions/setup-python@v6.2.0
with:
python-version: "3.13"
python-version-file: '.python-version'

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

- name: Set up Python 3.13
uses: actions/setup-python@v6
- name: Set up Python
uses: actions/setup-python@v6.2.0
with:
python-version: "3.13"
python-version-file: '.python-version'

- name: Install system deps
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ repos:
hooks:
- id: yamllint
- repo: https://github.com/ansible-community/ansible-lint.git
rev: v26.1.1
rev: v26.2.0
hooks:
- id: ansible-lint
stages:
Expand Down
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.14
79 changes: 3 additions & 76 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 13 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
[tool.poetry]
[project]
name = "dev-setup"
version = "1.5.0"
description = "My own Ansible collection for development setup."
authors = ["Federico Jaureguialzo <fedejaure@gmail.com>"]
authors = [
{name = "Federico Jaureguialzo", email = "fedejaure@gmail.com"}
]
readme = "README.md"
requires-python = "<3.15,>=3.14"
dependencies = [
"ansible>=13.2.0,<14.0.0",
]

[project.urls]
homepage = "https://github.com/fedejaure/dev-setup"
repository = "https://github.com/fedejaure/dev-setup"
package-mode = false

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/fedejaure/dev-setup/issues"

[tool.poetry.dependencies]
python = "<3.14,>=3.13"
ansible = "^13.2.0"
[tool.poetry]
package-mode = false

[tool.poetry.group.dev.dependencies]
pre-commit = "^4.5.1"
Expand Down Expand Up @@ -44,7 +48,7 @@ mkdocs-minify-plugin = "^0.8.0"
termynal = "^0.14.0"

[tool.ruff]
target-version = "py310"
target-version = "py314"
output-format = "full"
line-length = 99
fix = true
Expand Down
Loading