mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-26 11:34:00 +03:00
Merge pull request #1503 from browniebroke/psycopg2-no-binary
Install psycopg2 with --no-binary option
This commit is contained in:
commit
61559ccf06
|
@ -36,7 +36,7 @@ django-allauth==0.35.0
|
|||
# from http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg
|
||||
{% else %}
|
||||
# Python-PostgreSQL Database Adapter
|
||||
psycopg2==2.7.4
|
||||
psycopg2==2.7.4 --no-binary psycopg2
|
||||
{%- endif %}
|
||||
|
||||
# Unicode slugification
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# Python-PostgreSQL Database Adapter
|
||||
# Assuming Windows is used locally, and *nix -- in production.
|
||||
# ------------------------------------------------------------
|
||||
psycopg2==2.7.4
|
||||
psycopg2==2.7.4 --no-binary psycopg2
|
||||
{%- endif %}
|
||||
|
||||
# WSGI Handler
|
||||
|
|
Loading…
Reference in New Issue
Block a user