Skip to content

Commit f17867e

Browse files
MESH-2092 dependency updates
1 parent 5d0047a commit f17867e

6 files changed

Lines changed: 81 additions & 92 deletions

File tree

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,18 @@ ruff-ci:
7575

7676
lint: ruff mypy shellcheck
7777

78-
clean:
78+
clean: down
7979
rm -rf ./dist || true
80+
rm -rf ./tox || true
81+
rm -rf ./Mesh_Client.egg-info || true
82+
rm -rf ./.venv || true
8083
rm -rf ./reports || true
8184
rm -f .docker.env || true
8285
find . -type d -name '.mypy_cache' | xargs rm -rf || true
8386
find . -type d -name '.pytest_cache' | xargs rm -rf || true
8487
find . -type d -name '__pycache__' | xargs rm -rf || true
8588
find . -type f -name '.coverage' | xargs rm -rf || true
89+
find tests -type f -name '*.pem' | xargs rm -rf || true
8690

8791
purge: clean
8892
rm -rf .venv || true

docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.9'
21

32
services:
43

mesh_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def increment(
222222
_stacktrace: Optional[TracebackType] = None,
223223
) -> "MeshRetry":
224224
if method != "POST" or not url or not url.endswith("/outbox"):
225-
return super().increment(method, url, response, error, _pool, _stacktrace)
225+
return cast(MeshRetry, super().increment(method, url, response, error, _pool, _stacktrace))
226226

227227
if error:
228228
raise reraise(type(error), error, _stacktrace)

0 commit comments

Comments
 (0)