File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
include LICENSE.txt
2
2
include README.md
3
+ recursive-include djangocms_file/migrations *
4
+ recursive-include djangocms_file/south_migrations *
3
5
recursive-include djangocms_file/locale *
4
6
recursive-include djangocms_file/templates *
5
7
recursive-exclude * *.py[co]
Original file line number Diff line number Diff line change @@ -9,12 +9,11 @@ Installation
9
9
10
10
This plugin requires ` django CMS ` 3.0 or higher to be properly installed.
11
11
12
- * In your projects ` virtualenv ` _ , run `` pip install djangocms-file `` .
12
+ * In your projects ` virtualenv ` , run `` pip install djangocms-file `` .
13
13
* Add `` 'djangocms_file' `` to your `` INSTALLED_APPS `` setting.
14
- * If using Django 1.7 add `` 'djangocms_file': 'djangocms_file.migrations_django', ``
15
- to `` MIGRATION_MODULES `` (or define `` MIGRATION_MODULES `` if it does not exists);
16
- when django CMS 3.1 will be released, migrations for Django 1.7 will be moved
17
- to the standard location and the south-style ones to `` south_migrations `` .
14
+ * If using Django 1.6 and South < 1.0.2 add `` 'djangocms_file': 'djangocms_file.south_migrations', ``
15
+ to `` SOUTH_MIGRATION_MODULES `` (or define `` SOUTH_MIGRATION_MODULES `` if it
16
+ does not exists);
18
17
* Run `` manage.py migrate djangocms_file `` .
19
18
20
19
Original file line number Diff line number Diff line change 28
28
packages = [
29
29
'djangocms_file' ,
30
30
'djangocms_file.migrations' ,
31
- 'djangocms_file.migrations_django '
31
+ 'djangocms_file.south_migrations '
32
32
],
33
33
license = 'LICENSE.txt' ,
34
34
platforms = ['OS Independent' ],
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ commands = flake8
8
8
9
9
[flake8]
10
10
ignore = E251,E128
11
- exclude = djangocms_file/migrations/*,djangocms_file/migrations_django /*
11
+ exclude = djangocms_file/migrations/*,djangocms_file/south_migrations /*
12
12
max-line-length = 80
You can’t perform that action at this time.
0 commit comments