mirror of
https://github.com/django/django.git
synced 2025-07-28 23:54:02 +00:00
Refs #33308 -- Moved psycopg2 imports to the psycopg_any module.
This commit is contained in:
parent
c5ed884eab
commit
2ebfbd894e
13 changed files with 38 additions and 29 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue