This repository has been archived by the owner on Jun 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(POETRY): correct ansible-compat version
- Loading branch information
1 parent
7b7f252
commit 50fffdd
Showing
1 changed file
with
23 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,26 @@ | ||
[tool.poetry] | ||
name = "role-homebrew-retry" | ||
version = "0.3.0" | ||
description = "Encapsulates geerlingguy.homebrew in a simple retry loop, to allow for connectivity errors during homebrew installs." | ||
authors = ["Niall Byrne <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8.0,<4.0" | ||
ansible = "^5.2.0" | ||
[build-system] | ||
build-backend = "poetry.core.masonry.api" | ||
requires = ["poetry-core>=1.0.0"] | ||
|
||
[tool.poetry.dev-dependencies] | ||
ansible-compat = "!=1.0.0" # https://github.com/ansible-community/ansible-compat/issues/114 | ||
ansible-lint = "^5.3.2" | ||
commitizen = "^2.20.4" | ||
molecule = {extras = ["docker"], version = "^3.5.2"} | ||
yamllint = "^1.26.3" | ||
[tool] | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
[tool.poetry] | ||
authors = ["Niall Byrne <[email protected]>"] | ||
description = "Encapsulates geerlingguy.homebrew in a simple retry loop, to allow for connectivity errors during homebrew installs." | ||
name = "role-homebrew-retry" | ||
version = "0.3.0" | ||
|
||
[tool.poetry.dependencies] | ||
ansible = "^5.2.0" | ||
python = ">=3.8.0,<4.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
ansible-compat = "!=2.1.0" | ||
ansible-lint = "^5.3.2" | ||
commitizen = "^2.20.4" | ||
yamllint = "^1.26.3" | ||
|
||
[tool.poetry.dev-dependencies.molecule] | ||
extras = ["docker"] | ||
version = "^3.5.2" |