Skip to content

Commit f95f2c8

Browse files
authored
Disable djstripe (#9282)
DJStripe is overriding the api version globally, our app isn't compatible with that version.
1 parent 88b9b06 commit f95f2c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

readthedocs/settings/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def INSTALLED_APPS(self): # noqa
176176
'django_filters',
177177
'polymorphic',
178178
'simple_history',
179-
'djstripe',
179+
# 'djstripe',
180180

181181
# our apps
182182
'readthedocs.projects',

readthedocs/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# For testing the 500's with DEBUG on.
5858
re_path(r'^500/$', handler500),
5959
# Put this as a unique path for the webhook, so we don't clobber existing Stripe URL's
60-
re_path(r"^djstripe/", include("djstripe.urls", namespace="djstripe")),
60+
# re_path(r"^djstripe/", include("djstripe.urls", namespace="djstripe")),
6161
]
6262

6363
project_urls = [

0 commit comments

Comments
 (0)