Remove dj-database-url stubs (#10806)

This commit is contained in:
Nikita Sobolev
2023-09-30 00:33:29 +03:00
committed by GitHub
parent 7cf1fed75d
commit f97fbb4e63
3 changed files with 0 additions and 45 deletions

View File

@@ -1,2 +0,0 @@
# Loop variable that leaks into the global namespace
dj_database_url.key

View File

@@ -1,3 +0,0 @@
version = "1.3.*"
upstream_repository = "https://github.com/jazzband/dj-database-url"
obsolete_since = "2.0.0" # Released on 2023-04-27

View File

@@ -1,40 +0,0 @@
from _typeshed import Incomplete
from typing import Any
from typing_extensions import TypedDict
DEFAULT_ENV: str
SCHEMES: dict[str, str]
# From https://docs.djangoproject.com/en/4.0/ref/settings/#databases
class DBConfig(TypedDict, total=False):
ATOMIC_REQUESTS: bool
AUTOCOMMIT: bool
CONN_MAX_AGE: int | None
DISABLE_SERVER_SIDE_CURSORS: bool
ENGINE: str
HOST: str
NAME: str
OPTIONS: dict[str, Any] | None
PASSWORD: str
PORT: str
TEST: dict[str, Any]
TIME_ZONE: str
USER: str
def parse(
url: str,
engine: str | None = ...,
conn_max_age: int = ...,
conn_health_checks: bool = ...,
ssl_require: bool = ...,
test_options: dict[Incomplete, Incomplete] | None = ...,
) -> DBConfig: ...
def config(
env: str = ...,
default: str | None = ...,
engine: str | None = ...,
conn_max_age: int | None = ...,
conn_health_checks: bool = ...,
ssl_require: bool = ...,
test_options: dict[Incomplete, Incomplete] | None = ...,
) -> DBConfig: ...