Skip to content

Commit 9ea6fad

Browse files
authored
chore(deps-dev): lock and update all dev deps to latest (#209)
1 parent 561154c commit 9ea6fad

File tree

5 files changed

+386
-409
lines changed

5 files changed

+386
-409
lines changed

.github/actions/setup/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ inputs:
77
default: "3.11"
88
poetry-version:
99
description: "Poetry version to install"
10-
default: "1.3.2"
10+
default: "1.5.1"
1111
cache:
1212
description: "Cache directory"
1313
default: "${{ runner.temp }}/cache"
@@ -40,10 +40,10 @@ runs:
4040
- name: "Install Poetry"
4141
shell: bash
4242
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
4747
4848
- name: "Install development dependencies"
4949
shell: bash

.github/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ updates:
1212
directory: "/"
1313
schedule:
1414
interval: "monthly"
15+
versioning-strategy: "increase"
16+
ignore:
17+
- dependency-name: "python"

decoy/stringify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def stringify_call(event: AnySpyEvent) -> str:
3030

3131
else:
3232
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()]
3434
extra_args_msg = (
3535
" - ignoring unspecified arguments" if payload.ignore_extra_args else ""
3636
)

0 commit comments

Comments
 (0)