From 2a4a08a0ffb801be135b627e9e650237608ad81d Mon Sep 17 00:00:00 2001 From: Erica Pisani Date: Thu, 21 May 2026 16:40:17 -0400 Subject: [PATCH] fix(test-fastapi-with-database): Fix sentry-sdk source path Update the sentry-sdk path from /sentry-python to ../../sentry-python to match the expected relative path convention. Refs PY-2483 Co-Authored-By: Claude Opus 4.6 --- test-fastapi-with-database/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-fastapi-with-database/pyproject.toml b/test-fastapi-with-database/pyproject.toml index 02b85ca..032b509 100644 --- a/test-fastapi-with-database/pyproject.toml +++ b/test-fastapi-with-database/pyproject.toml @@ -11,4 +11,4 @@ dependencies = [ ] [tool.uv.sources] -sentry-sdk = { path = "/sentry-python", editable = true } +sentry-sdk = { path = "../../sentry-python", editable = true }