There was an error while loading. Please reload this page.
2 parents 4d42993 + c6fcca6 commit c10c908Copy full SHA for c10c908
1 file changed
Dockerfile
@@ -110,10 +110,10 @@ ARG odoo_version
110
111
# Install Odoo requirements (use ADD for correct layer caching).
112
# We use requirements from OCB for easier maintenance of older versions.
113
-# We use no-binary for psycopg2 because its binary wheels are sometimes broken
114
-# and not very portable.
115
ADD https://raw.githubusercontent.com/OCA/OCB/$odoo_version/requirements.txt /tmp/ocb-requirements.txt
116
-RUN pip install --no-cache-dir --no-binary psycopg2 -r /tmp/ocb-requirements.txt
+RUN pip install --no-cache-dir \
+ -r /tmp/ocb-requirements.txt \
+ packaging
117
118
# Install other test requirements.
119
# - coverage
0 commit comments