Skip to content

Commit

Permalink
Make aimmo compatible with Django 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mrniket committed Jun 25, 2018
1 parent 3cf2214 commit 7a3bdcc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions aimmo_runner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def run(use_minikube, use_vagrant=False, server_wait=True, capture_output=False,
run_command(['python', _MANAGE_PY, 'migrate', '--noinput'], capture_output=capture_output)
run_command(['python', _MANAGE_PY, 'collectstatic', '--noinput'], capture_output=capture_output)

django.setup()
create_superuser_if_missing(username='admin', password='admin')

if use_minikube:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
packages=find_packages(),
include_package_data=True,
install_requires=[
'django >= 1.8.3, < 1.9.0',
'django >= 1.8.3, < 1.9.13',
'django-autoconfig >= 0.3.6, < 1.0.0',
'django-forms-bootstrap',
'django-js-reverse',
Expand All @@ -24,7 +24,7 @@
'psutil >= 5.4, < 5.5',
],
tests_require=[
'django-setuptest',
'django-setuptest==0.2.1',
'httmock',
'mock == 2.0.0',
'docker == 2.7.0',
Expand Down

0 comments on commit 7a3bdcc

Please sign in to comment.