We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3cd0b8 commit 9dba520Copy full SHA for 9dba520
tests/djapp/settings_pg.py
@@ -7,6 +7,9 @@
7
from .settings import * # noqa: F401, F403
8
9
try:
10
+ # pypy does not support `psycopg2` or `psycopg2-binary`
11
+ # This is a package that only gets installed with pypy, and it needs to be
12
+ # initialized for it to work properly. It mimic `psycopg2` 1-to-1
13
from psycopg2cffi import compat
14
compat.register()
15
except ImportError:
0 commit comments