Skip to content

Commit 47fec42

Browse files
authored
feat(onboarding): add poetry as an option to python install snippets (#90365)
1 parent 84addea commit 47fec42

File tree

14 files changed

+62
-29
lines changed

14 files changed

+62
-29
lines changed

static/app/gettingStartedDocs/python/bottle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const onboarding: OnboardingConfig = {
7272
code: <code />,
7373
}
7474
),
75-
configurations: getPythonInstallConfig({packageName: "'sentry-sdk[bottle]'"}),
75+
configurations: getPythonInstallConfig({packageName: 'sentry-sdk[bottle]'}),
7676
},
7777
],
7878
configure: (params: Params) => [

static/app/gettingStartedDocs/python/celery.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const onboarding: OnboardingConfig = {
7272
code: <code />,
7373
}
7474
),
75-
configurations: getPythonInstallConfig({packageName: "'sentry-sdk[celery]'"}),
75+
configurations: getPythonInstallConfig({packageName: 'sentry-sdk[celery]'}),
7676
},
7777
],
7878
configure: (params: Params) => [

static/app/gettingStartedDocs/python/chalice.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const onboarding: OnboardingConfig = {
7777
code: <code />,
7878
}
7979
),
80-
configurations: getPythonInstallConfig({packageName: "'sentry-sdk[chalice]'"}),
80+
configurations: getPythonInstallConfig({packageName: 'sentry-sdk[chalice]'}),
8181
},
8282
],
8383
configure: (params: Params) => [

static/app/gettingStartedDocs/python/django.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const onboarding: OnboardingConfig = {
6868
code: <code />,
6969
}
7070
),
71-
configurations: getPythonInstallConfig({packageName: "'sentry-sdk[django]'"}),
71+
configurations: getPythonInstallConfig({packageName: 'sentry-sdk[django]'}),
7272
},
7373
],
7474
configure: (params: Params) => [

static/app/gettingStartedDocs/python/falcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const onboarding: OnboardingConfig = {
7373
code: <code />,
7474
}
7575
),
76-
configurations: getPythonInstallConfig({packageName: "'sentry-sdk[falcon]'"}),
76+
configurations: getPythonInstallConfig({packageName: 'sentry-sdk[falcon]'}),
7777
},
7878
],
7979
configure: (params: Params) => [

static/app/gettingStartedDocs/python/fastapi.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const onboarding: OnboardingConfig = {
7575
code: <code />,
7676
}
7777
),
78-
configurations: getPythonInstallConfig({packageName: "'sentry-sdk[fastapi]'"}),
78+
configurations: getPythonInstallConfig({packageName: 'sentry-sdk[fastapi]'}),
7979
},
8080
],
8181
configure: (params: Params) => [

static/app/gettingStartedDocs/python/flask.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const onboarding: OnboardingConfig = {
7474
code: <code />,
7575
}
7676
),
77-
configurations: getPythonInstallConfig({packageName: "'sentry-sdk[flask]'"}),
77+
configurations: getPythonInstallConfig({packageName: 'sentry-sdk[flask]'}),
7878
},
7979
],
8080
configure: (params: Params) => [

static/app/gettingStartedDocs/python/mongo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const onboarding: OnboardingConfig = {
4747
code: <code />,
4848
}
4949
),
50-
configurations: getPythonInstallConfig({packageName: "'sentry-sdk[pymongo]'"}),
50+
configurations: getPythonInstallConfig({packageName: 'sentry-sdk[pymongo]'}),
5151
},
5252
],
5353
configure: (params: Params) => [

static/app/gettingStartedDocs/python/quart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const onboarding: OnboardingConfig = {
7575
code: <code />,
7676
}
7777
),
78-
configurations: getPythonInstallConfig({packageName: "'sentry-sdk[quart]'"}),
78+
configurations: getPythonInstallConfig({packageName: 'sentry-sdk[quart]'}),
7979
},
8080
],
8181
configure: (params: Params) => [

static/app/gettingStartedDocs/python/rq.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const onboarding: OnboardingConfig = {
101101
description: tct('Install [code:sentry-sdk] from PyPI with the [code:rq] extra:', {
102102
code: <code />,
103103
}),
104-
configurations: getPythonInstallConfig({packageName: "'sentry-sdk[rq]'"}),
104+
configurations: getPythonInstallConfig({packageName: 'sentry-sdk[rq]'}),
105105
},
106106
],
107107
configure: (params: Params) => [

0 commit comments

Comments
 (0)