Refs #33308 -- Moved psycopg2 imports to the psycopg_any module.

This commit is contained in:
Florian Apolloner 2022-12-12 08:25:05 +01:00 committed by Mariusz Felisiak
parent c5ed884eab
commit 2ebfbd894e
13 changed files with 38 additions and 29 deletions

View file

@ -11,9 +11,9 @@ from .models import (
)
try:
from psycopg2.extras import DateRange, NumericRange
from django.db.backends.postgresql.psycopg_any import DateRange, NumericRange
except ImportError:
pass # psycopg2 isn't installed.
pass # psycopg isn't installed.
class BulkSaveTests(PostgreSQLTestCase):