File tree Expand file tree Collapse file tree 5 files changed +386
-409
lines changed Expand file tree Collapse file tree 5 files changed +386
-409
lines changed Original file line number Diff line number Diff line change 7
7
default : " 3.11"
8
8
poetry-version :
9
9
description : " Poetry version to install"
10
- default : " 1.3.2 "
10
+ default : " 1.5.1 "
11
11
cache :
12
12
description : " Cache directory"
13
13
default : " ${{ runner.temp }}/cache"
@@ -40,10 +40,10 @@ runs:
40
40
- name : " Install Poetry"
41
41
shell : bash
42
42
run : |
43
- if ! poetry --version; then
44
- "${{ steps.setup-python.outputs.python-path }}" -m venv "${{ inputs.cache }}/tools"
45
- pip install poetry==${{ inputs.poetry-version }}
46
- fi
43
+ if ! poetry --version; then
44
+ "${{ steps.setup-python.outputs.python-path }}" -m venv "${{ inputs.cache }}/tools"
45
+ pip install poetry==${{ inputs.poetry-version }}
46
+ fi
47
47
48
48
- name : " Install development dependencies"
49
49
shell : bash
Original file line number Diff line number Diff line change @@ -12,3 +12,6 @@ updates:
12
12
directory : " /"
13
13
schedule :
14
14
interval : " monthly"
15
+ versioning-strategy : " increase"
16
+ ignore :
17
+ - dependency-name : " python"
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def stringify_call(event: AnySpyEvent) -> str:
30
30
31
31
else :
32
32
args_list = [repr (arg ) for arg in payload .args ]
33
- kwargs_list = [f"{ key } ={ repr ( val ) } " for key , val in payload .kwargs .items ()]
33
+ kwargs_list = [f"{ key } ={ val !r } " for key , val in payload .kwargs .items ()]
34
34
extra_args_msg = (
35
35
" - ignoring unspecified arguments" if payload .ignore_extra_args else ""
36
36
)
You can’t perform that action at this time.
0 commit comments