mirror of
https://github.com/zulip/zulip.git
synced 2026-06-03 21:01:43 +08:00
Some checks failed
API Documentation Update Check / check-feature-level-updated (push) Has been cancelled
Code scanning / CodeQL (push) Has been cancelled
Zulip production suite / Ubuntu 22.04 production build (push) Has been cancelled
Zulip CI / ${{ matrix.name }} (zulip/ci:bookworm, true, false, Debian 12 (Python 3.11, backend + documentation), bookworm) (push) Has been cancelled
Zulip CI / ${{ matrix.name }} (zulip/ci:jammy, false, true, Ubuntu 22.04 (Python 3.10, backend + frontend), jammy) (push) Has been cancelled
Zulip CI / ${{ matrix.name }} (zulip/ci:noble, false, false, Ubuntu 24.04 (Python 3.12, backend), noble) (push) Has been cancelled
Zulip CI / ${{ matrix.name }} (zulip/ci:trixie, false, false, Debian 13 (Python 3.13, backend), trixie) (push) Has been cancelled
API Documentation Update Check / notify-if-api-docs-changed (push) Has been cancelled
Zulip production suite / ${{ matrix.name }} (zulip/ci:bookworm, --test-custom-db, Debian 12 production install with custom db name and user, bookworm) (push) Has been cancelled
Zulip production suite / ${{ matrix.name }} (zulip/ci:jammy, , Ubuntu 22.04 production install and PostgreSQL upgrade with pgroonga, jammy) (push) Has been cancelled
Zulip production suite / ${{ matrix.name }} (zulip/ci:noble, , Ubuntu 24.04 production install, noble) (push) Has been cancelled
Zulip production suite / ${{ matrix.name }} (zulip/ci:trixie, , Debian 13 production install, trixie) (push) Has been cancelled
Zulip production suite / ${{ matrix.name }} (zulip/ci:bookworm-7.0, 7.0 Version Upgrade, bookworm) (push) Has been cancelled
Zulip production suite / ${{ matrix.name }} (zulip/ci:bookworm-8.0, 8.0 Version Upgrade, bookworm) (push) Has been cancelled
Zulip production suite / ${{ matrix.name }} (zulip/ci:jammy-6.0, 6.0 Version Upgrade, jammy) (push) Has been cancelled
Zulip production suite / ${{ matrix.name }} (zulip/ci:noble-10.0, 10.0 Version Upgrade, noble) (push) Has been cancelled
Zulip production suite / ${{ matrix.name }} (zulip/ci:noble-9.0, 9.0 Version Upgrade, noble) (push) Has been cancelled
Zulip production suite / ${{ matrix.name }} (zulip/ci:trixie-11.0, 11.0 Version Upgrade, trixie) (push) Has been cancelled
Includes using backported fixes from Python 3.11. Signed-off-by: Anders Kaseorg <anders@zulip.com>
46 lines
1.8 KiB
Python
46 lines
1.8 KiB
Python
# Django settings for zulip project.
|
|
########################################################################
|
|
# Here's how settings for the Zulip project work:
|
|
#
|
|
# * configured_settings.py imports default_settings.py, which contains
|
|
# default values for settings configurable in prod_settings.py.
|
|
#
|
|
# * configured_settings.py imports prod_settings.py, and any site-specific
|
|
# configuration belongs there. The template for prod_settings.py is
|
|
# prod_settings_template.py.
|
|
#
|
|
# * computed_settings.py contains non-site-specific and settings
|
|
# configuration for the Zulip Django app.
|
|
#
|
|
# See https://zulip.readthedocs.io/en/latest/subsystems/settings.html for more information
|
|
#
|
|
########################################################################
|
|
import sys
|
|
from typing import TYPE_CHECKING
|
|
|
|
# Patch datetime.fromisoformat for Python < 3.11
|
|
if sys.version_info < (3, 11): # nocoverage
|
|
from backports.datetime_fromisoformat import MonkeyPatch
|
|
|
|
MonkeyPatch.patch_fromisoformat()
|
|
|
|
# Monkey-patch certain types that are declared as generic types
|
|
# generic in django-stubs, but not (yet) as generic types in Django
|
|
# itself. This is necessary to ensure type references like
|
|
# django.db.models.Lookup[int] work correctly at runtime.
|
|
#
|
|
# Hide this from mypy to avoid creating stupid cycles like
|
|
# zproject.settings → django_stubs_ext → django_stubs_ext.patch →
|
|
# django.contrib.admin.options → django.contrib.contenttypes.models →
|
|
# confirmation.models → django.conf → zproject.settings.
|
|
if not TYPE_CHECKING:
|
|
import django_stubs_ext
|
|
|
|
django_stubs_ext.monkeypatch()
|
|
|
|
from .configured_settings import * # noqa: F403 isort: skip
|
|
from .computed_settings import * # noqa: F403 isort: skip
|
|
|
|
# Do not add any code after these wildcard imports! Add it to
|
|
# computed_settings instead.
|