Skip to content

Commit

Permalink
chore(deps-dev): lock and update all dev deps to latest (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcous authored Jul 4, 2023
1 parent 561154c commit 9ea6fad
Show file tree
Hide file tree
Showing 5 changed files with 386 additions and 409 deletions.
10 changes: 5 additions & 5 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
default: "3.11"
poetry-version:
description: "Poetry version to install"
default: "1.3.2"
default: "1.5.1"
cache:
description: "Cache directory"
default: "${{ runner.temp }}/cache"
Expand Down Expand Up @@ -40,10 +40,10 @@ runs:
- name: "Install Poetry"
shell: bash
run: |
if ! poetry --version; then
"${{ steps.setup-python.outputs.python-path }}" -m venv "${{ inputs.cache }}/tools"
pip install poetry==${{ inputs.poetry-version }}
fi
if ! poetry --version; then
"${{ steps.setup-python.outputs.python-path }}" -m venv "${{ inputs.cache }}/tools"
pip install poetry==${{ inputs.poetry-version }}
fi
- name: "Install development dependencies"
shell: bash
Expand Down
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ updates:
directory: "/"
schedule:
interval: "monthly"
versioning-strategy: "increase"
ignore:
- dependency-name: "python"
2 changes: 1 addition & 1 deletion decoy/stringify.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def stringify_call(event: AnySpyEvent) -> str:

else:
args_list = [repr(arg) for arg in payload.args]
kwargs_list = [f"{key}={repr(val)}" for key, val in payload.kwargs.items()]
kwargs_list = [f"{key}={val!r}" for key, val in payload.kwargs.items()]
extra_args_msg = (
" - ignoring unspecified arguments" if payload.ignore_extra_args else ""
)
Expand Down
Loading

0 comments on commit 9ea6fad

Please sign in to comment.