Skip to content

Commit 2c4e788

Browse files
authored
Avoid using incompatible ansible-compat version (#3906)
Related: https://github.com/ansible/ansible-compat/discussions/257#discussioncomment-5791460
1 parent 0d874bd commit 2c4e788

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.config/requirements.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ansible-compat >= 2.2.0
1+
ansible-compat >= 2.2.0, < 4.0.0
22
ansible-core >= 2.12.10
33
click >= 8.0, < 9
44
click-help-colors >= 0.9

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ repos:
6262
entry: mypy src/
6363
pass_filenames: false
6464
additional_dependencies:
65-
- ansible-compat>=2.2.0
65+
- ansible-compat>=2.2.0,<4.0.0
6666
- click>=8.0.1
6767
- enrich>=1.2.7
6868
- importlib-metadata>=4.6.1
@@ -81,7 +81,7 @@ repos:
8181
args:
8282
- --output-format=colorized
8383
additional_dependencies:
84-
- ansible-compat>=2.2.0
84+
- ansible-compat>=2.2.0,<4.0.0
8585
- click
8686
- click-help-colors
8787
- cookiecutter

0 commit comments

Comments
 (0)