File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ python-magic
13
13
14
14
# On October 4, 2022 importlib-metadata released importlib-metadata 5.0.0 and in version 5.0.0
15
15
# They have Deprecated EntryPoints and that's why you are facing this error.
16
- importlib-metadata = =4.13.0
16
+ importlib-metadata < =4.13.0
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ parallel_show_output = true
21
21
[testenv:flake8]
22
22
basepython = python3
23
23
skip_install = true
24
- deps =
24
+ deps =
25
+ importlib-metadata<=4.13.0
25
26
flake8
26
27
flake8-no-fstring
27
28
commands = flake8 {[base]linting_targets}
@@ -47,13 +48,16 @@ commands = mypy atlassian/
47
48
[testenv:bandit]
48
49
basepython = python3
49
50
skip_install = true
50
- deps = bandit
51
+ deps =
52
+ importlib-metadata<=4.13.0
53
+ bandit
51
54
commands = bandit -r atlassian/
52
55
53
56
[testenv:doc8]
54
57
basepython = python3
55
58
skip_install = true
56
59
deps =
60
+ importlib-metadata<=4.13.0
57
61
sphinx
58
62
doc8
59
63
commands = doc8 --ignore-path docs/_build/ docs/
You can’t perform that action at this time.
0 commit comments