File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 34
34
'djangocms-admin-style' ,
35
35
]
36
36
37
+ #
38
+ # NOTE: divio/django-formtools is IDENTICAL to django/django-formtools except
39
+ # that its Django requirement has been relaxed to >=Django>=1.6. This is because
40
+ # this version of django CMS supports Django 1.6+. Internally, CMS will use
41
+ # django.contrib.formtools when available, then look for the external version if
42
+ # required. Unfortunately, SetupTools doesn't allow use to load the external
43
+ # library when using Django 1.7+ only.
44
+ #
45
+ # Further note that dependency links do not work by default. Current versions of
46
+ # Pip support it with the flag `--process-dependency-links`
47
+ #
48
+ # Remove these machinations in CMS v3.3 when Django 1.6 support is dropped.
49
+ #
50
+ DEPENDENCY_LINKS = [
51
+ "https://github.com/divio/django-formtools/archive/master.zip#egg=django-formtools" ,
52
+ ]
53
+
37
54
setup (
38
55
author = 'Patrick Lauber' ,
39
56
46
63
platforms = ['OS Independent' ],
47
64
classifiers = CLASSIFIERS ,
48
65
install_requires = INSTALL_REQUIREMENTS ,
66
+ dependency_links = DEPENDENCY_LINKS ,
49
67
extras_require = {
50
68
'south' : ['south>=1.0.0' ],
51
69
},
You can’t perform that action at this time.
0 commit comments