Skip to content

Commit

Permalink
Upgrade to latest Django 1.10 bugfix release, 1.10.7. (see #662)
Browse files Browse the repository at this point in the history
Notes:
- The psycopg2 module now has a pinned version after a local problem.
- As of 1.10.3, ALLOWED_HOSTS is checked when DEBUG=True, so added local hosts.
  • Loading branch information
jnga committed Jul 7, 2017
1 parent 17c15d7 commit 20cf6e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions gobotany/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
'gobotany-dev.herokuapp.com',
'gobotany-staging.herokuapp.com',
'gobotany-prod.herokuapp.com',
'localhost',
'127.0.0.1',
'0.0.0.0'
]

TEMPLATES = [
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import find_packages

requirements = [
'django==1.10.1',
'django==1.10.7',

'Pillow==3.3.1',
'bleach==1.4.3',
Expand All @@ -14,7 +14,7 @@
'django-tinymce==2.3.0',
'inflect',
'lxml==3.5.0',
'psycopg2>=2.4.5',
'psycopg2==2.6.2',
'python-memcached',
'pytz',
'tablib==0.9.11',
Expand Down

0 comments on commit 20cf6e5

Please sign in to comment.