Skip to content
This repository has been archived by the owner on Jun 19, 2023. It is now read-only.

Commit

Permalink
build(POETRY): correct ansible-compat version
Browse files Browse the repository at this point in the history
  • Loading branch information
niall-byrne committed May 30, 2022
1 parent d364ede commit a68bba1
Showing 1 changed file with 23 additions and 17 deletions.
40 changes: 23 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
[tool.poetry]
name = "role-clamav"
version = "0.2.1"
description = "Install ClamAV antivirus on OSX. Includes a simple realtime scan implementation that watches a configured folder."
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 = "Install ClamAV antivirus on OSX. Includes a simple realtime scan implementation that watches a configured folder."
name = "role-clamav"
version = "0.2.1"

[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"

0 comments on commit a68bba1

Please sign in to comment.