diff --git a/docs/platforms/python/integrations/launchdarkly/index.mdx b/docs/platforms/python/integrations/launchdarkly/index.mdx index e642fb0826a86..63e135aae4666 100644 --- a/docs/platforms/python/integrations/launchdarkly/index.mdx +++ b/docs/platforms/python/integrations/launchdarkly/index.mdx @@ -9,10 +9,10 @@ The [LaunchDarkly](https://launchdarkly.com/) integration tracks feature flag ev ## Install -Install `sentry-sdk` (>=2.19.2) from PyPI. +Install `sentry-sdk` from PyPI with the `launchdarkly` extra. ```bash -pip install --upgrade 'sentry-sdk' +pip install --upgrade 'sentry-sdk[launchdarkly]' ``` ## Configure @@ -47,4 +47,10 @@ sentry_sdk.capture_exception(Exception("Something went wrong!")) Visit the Sentry website and confirm that your error event has recorded the feature flag "hello" and its value "false". +## Supported Versions + +- launchdarkly-server-sdk >= 9.8.0 +- sentry-sdk >= 2.19.2 +- python >= 3.8 + diff --git a/docs/platforms/python/integrations/openfeature/index.mdx b/docs/platforms/python/integrations/openfeature/index.mdx index 59b260e38699e..d1e87d54328d3 100644 --- a/docs/platforms/python/integrations/openfeature/index.mdx +++ b/docs/platforms/python/integrations/openfeature/index.mdx @@ -9,10 +9,10 @@ The [OpenFeature](https://openfeature.dev/) integration tracks feature flag eval ## Install -Install `sentry-sdk` (>=2.19.2) from PyPI. +Install `sentry-sdk` from PyPI with the `openfeature` extra. ```bash -pip install --upgrade 'sentry-sdk' +pip install --upgrade 'sentry-sdk[openfeature]' ``` ## Configure @@ -47,4 +47,10 @@ sentry_sdk.capture_exception(Exception("Something went wrong!")) Visit the Sentry website and confirm that your error event has recorded the feature flag "hello" and its value "false". +## Supported Versions + +- openfeature-sdk >= 0.7.1 +- sentry-sdk >= 2.19.2 +- python >= 3.8 + diff --git a/docs/platforms/python/integrations/unleash/index.mdx b/docs/platforms/python/integrations/unleash/index.mdx index 03e37b0df2225..9fb9c237b6159 100644 --- a/docs/platforms/python/integrations/unleash/index.mdx +++ b/docs/platforms/python/integrations/unleash/index.mdx @@ -9,10 +9,10 @@ The [Unleash](https://www.getunleash.io/) integration tracks feature flag evalua ## Install -Install `sentry-sdk` (>=2.20.0) and `UnleashClient` (>=6.0.1) from PyPI. +Install `sentry-sdk` from PyPI with the `unleash` extra. ```bash -pip install --upgrade sentry-sdk UnleashClient +pip install --upgrade 'sentry-sdk[unleash]' ``` ## Configure @@ -49,4 +49,10 @@ sentry_sdk.capture_exception(Exception("Something went wrong!")) Visit the [Sentry website](https://sentry.io/issues/) and confirm that your error event has recorded the feature flag "test-flag", and its value is equal to `test_flag_enabled`. +## Supported Versions + +- UnleashClient >= 6.0.1 +- sentry-sdk >= 2.20.0 +- python >= 3.8 +