Lock Django to 1.11 in Pipfile, so it won't accidentally upgrade to 2 when I try to install unrelated packages

This commit is contained in:
Danielle McLean 2018-01-24 12:57:10 +11:00
parent 40ead1bbe1
commit 957fc4ada7
Signed by untrusted user: 00dani
GPG key ID: 5A5D2D1AFF12EEC5
2 changed files with 27 additions and 17 deletions

View file

@ -12,7 +12,7 @@ python_version = '3.6'
[packages]
django = "*"
django = ">=1.11,<2.0"
django-compressor = "*"
gunicorn = "*"
"psycopg2" = "*"