Skip to content

Commit a12ebcb

Browse files
committed
Pin Django dependency to 1.4
Fixes tobami#135 Avoid future South version breakage
1 parent 0b3e5a5 commit a12ebcb

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
Django>=1.3
2-
South>=0.7.3
1+
Django==1.4
2+
South<=2.0
33
isodate==0.4.8
44
-e git://github.com/toastdriven/django-tastypie.git@5397dec04fe83092a56ba14a843731f2aa08184d#egg=django-tastypie
5+
#django-tastypie==0.9.15
56
#-e git://github.com/robhudson/django-debug-toolbar.git#egg=django-debug-toolbar

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
version='0.9.1',
88
url='https://github.com/tobami/codespeed',
99
license='GNU Lesser General Public License version 2.1',
10-
install_requires=['django>=1.3', 'isodate', 'south', 'django-tastypie'],
10+
install_requires=['django==1.4', 'isodate', 'south<=2.0', 'django-tastypie'],
1111
packages=find_packages(exclude=['ez_setup', 'sample_project']),
1212
description='A web application to monitor and analyze the performance of your code',
1313
include_package_data=True,

0 commit comments

Comments
 (0)