Skip to content

Commit

Permalink
chore(deps): Update dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bellini666 committed Sep 24, 2024
1 parent 8db3f0f commit 93b1bf4
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 59 deletions.
107 changes: 55 additions & 52 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ django-types = "^0.19.1"
factory-boy = "^3.2.1"
pillow = "^10.2.0"
pytest = "^8.0.2"
pytest-asyncio = "^0.23.4"
pytest-asyncio = "^0.24.0"
pytest-cov = "^5.0.0"
pytest-django = "^4.1.0"
pytest-mock = "^3.5.1"
pytest-snapshot = "^0.9.0"
pytest-watch = "^4.2.0"
ruff = "^0.6.1"
django-polymorphic = "^3.1.0"
setuptools = "^73.0.0"
setuptools = "^75.1.0"
psycopg2 = "^2.9.9"
psycopg2-binary = "^2.9.9"

Expand Down
2 changes: 1 addition & 1 deletion strawberry_django/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,7 @@ def __init__(
execution_context: ExecutionContext | None = None,
prefetch_custom_queryset: bool = False,
):
super().__init__(execution_context=execution_context) # type: ignore
super().__init__(execution_context=execution_context)
self.enable_only = enable_only_optimization
self.enable_select_related = enable_select_related_optimization
self.enable_prefetch_related = enable_prefetch_related_optimization
Expand Down
4 changes: 2 additions & 2 deletions tests/filters/test_filters_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def field_method(self, root, info, prefix, value: str, queryset):
pass

except Exception as exc:
raise pytest.fail(f"DID RAISE {exc}") # type: ignore
raise pytest.fail(f"DID RAISE {exc}")


def test_filter_field_sequence():
Expand Down Expand Up @@ -232,7 +232,7 @@ def filter(self, root, info, prefix, queryset):
pass

except Exception as exc:
raise pytest.fail(f"DID RAISE {exc}") # type: ignore
raise pytest.fail(f"DID RAISE {exc}")


def test_filter_field_method():
Expand Down
4 changes: 2 additions & 2 deletions tests/test_ordering.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def field_method(self, root, info, prefix, value: auto, sequence, queryset):
pass

except Exception as exc:
raise pytest.fail(f"DID RAISE {exc}") # type: ignore
raise pytest.fail(f"DID RAISE {exc}")


def test_order_field_forbidden_param_annotation():
Expand Down Expand Up @@ -308,7 +308,7 @@ def order(self, root, info, prefix, sequence, queryset):
pass

except Exception as exc:
raise pytest.fail(f"DID RAISE {exc}") # type: ignore
raise pytest.fail(f"DID RAISE {exc}")


def test_order_field_method():
Expand Down

0 comments on commit 93b1bf4

Please sign in to comment.