Projet

Général

Profil

0003-general-remove-sqlite-support-64294.patch

Frédéric Péters, 15 mai 2022 11:14

Télécharger (1,05 ko)

Voir les différences:

Subject: [PATCH 3/6] general: remove sqlite support (#64294)

 bijoe/settings.py | 3 +--
 tox.ini           | 2 ++
 2 files changed, 3 insertions(+), 2 deletions(-)
bijoe/settings.py
87 87

  
88 88
DATABASES = {
89 89
    'default': {
90
        'ENGINE': 'django.db.backends.sqlite3',
91
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
90
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
92 91
    }
93 92
}
94 93

  
tox.ini
36 36
	pyquery
37 37
	tabulate
38 38
	sentry_sdk<0.12.3
39
	psycopg2<2.9
40
	psycopg2-binary<2.9
39 41
	dj22: djangorestframework>=3.7
40 42
	dj22: https://git.entrouvert.org/hobo.git/snapshot/hobo-main.tar.gz
41 43
commands =
42
-