-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade pillow. Add sentry integration.
- Loading branch information
Showing
7 changed files
with
42 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from parsifal.utils.version import get_version | ||
|
||
VERSION = (2, 0, 1, "final", 0) | ||
VERSION = (2, 0, 2, "final", 0) | ||
|
||
__version__ = get_version(VERSION) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
from django.conf import settings as django_settings | ||
|
||
import parsifal | ||
|
||
|
||
def settings(request): | ||
return { | ||
"environment": django_settings.PARSIFAL_ENVIRONMENT, | ||
"parsifal_version": parsifal.__version__, | ||
"parsifal_release": django_settings.PARSIFAL_RELEASE, | ||
"parsifal_environment": django_settings.PARSIFAL_ENVIRONMENT, | ||
"recaptcha_enabled": django_settings.GOOGLE_RECAPTCHA_ENABLED, | ||
"recaptcha_site_key": django_settings.GOOGLE_RECAPTCHA_SITE_KEY, | ||
"google_analytics_ua": django_settings.GOOGLE_ANALYTICS_UA, | ||
"sentry_dsn": django_settings.SENTRY_DSN, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters