Skip to content

Commit 5ede932

Browse files
authored
ref(flags): update python supported vers and install snippet (#12345)
1 parent f052200 commit 5ede932

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed

docs/platforms/python/integrations/launchdarkly/index.mdx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ The [LaunchDarkly](https://launchdarkly.com/) integration tracks feature flag ev
99

1010
## Install
1111

12-
Install `sentry-sdk` (>=2.19.2) from PyPI.
12+
Install `sentry-sdk` from PyPI with the `launchdarkly` extra.
1313

1414
```bash
15-
pip install --upgrade 'sentry-sdk'
15+
pip install --upgrade 'sentry-sdk[launchdarkly]'
1616
```
1717

1818
## Configure
@@ -47,4 +47,10 @@ sentry_sdk.capture_exception(Exception("Something went wrong!"))
4747

4848
Visit the Sentry website and confirm that your error event has recorded the feature flag "hello" and its value "false".
4949

50+
## Supported Versions
51+
52+
- launchdarkly-server-sdk >= 9.8.0
53+
- sentry-sdk >= 2.19.2
54+
- python >= 3.8
55+
5056
<PlatformContent includePath="feature-flags/next-steps" />

docs/platforms/python/integrations/openfeature/index.mdx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ The [OpenFeature](https://openfeature.dev/) integration tracks feature flag eval
99

1010
## Install
1111

12-
Install `sentry-sdk` (>=2.19.2) from PyPI.
12+
Install `sentry-sdk` from PyPI with the `openfeature` extra.
1313

1414
```bash
15-
pip install --upgrade 'sentry-sdk'
15+
pip install --upgrade 'sentry-sdk[openfeature]'
1616
```
1717

1818
## Configure
@@ -47,4 +47,10 @@ sentry_sdk.capture_exception(Exception("Something went wrong!"))
4747

4848
Visit the Sentry website and confirm that your error event has recorded the feature flag "hello" and its value "false".
4949

50+
## Supported Versions
51+
52+
- openfeature-sdk >= 0.7.1
53+
- sentry-sdk >= 2.19.2
54+
- python >= 3.8
55+
5056
<PlatformContent includePath="feature-flags/next-steps" />

docs/platforms/python/integrations/unleash/index.mdx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ The [Unleash](https://www.getunleash.io/) integration tracks feature flag evalua
99

1010
## Install
1111

12-
Install `sentry-sdk` (>=2.20.0) and `UnleashClient` (>=6.0.1) from PyPI.
12+
Install `sentry-sdk` from PyPI with the `unleash` extra.
1313

1414
```bash
15-
pip install --upgrade sentry-sdk UnleashClient
15+
pip install --upgrade 'sentry-sdk[unleash]'
1616
```
1717

1818
## Configure
@@ -49,4 +49,10 @@ sentry_sdk.capture_exception(Exception("Something went wrong!"))
4949
Visit the [Sentry website](https://sentry.io/issues/) and confirm that your error
5050
event has recorded the feature flag "test-flag", and its value is equal to `test_flag_enabled`.
5151

52+
## Supported Versions
53+
54+
- UnleashClient >= 6.0.1
55+
- sentry-sdk >= 2.20.0
56+
- python >= 3.8
57+
5258
<PlatformContent includePath="feature-flags/next-steps" />

0 commit comments

Comments
 (0)