Skip to content

Commit f57ef38

Browse files
authored
fix: Update manifest to exclude mptt stub in release package (#1367)
* Update manifest to exclude mptt stub * Also exclude tests from package * Update manifest
1 parent 0f679cd commit f57ef38

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
include LICENSE
22
include README.rst
3+
exclude mptt/__init__.py
34
recursive-include filer/locale *
45
recursive-include filer/static *
56
recursive-include filer/templates *
67
recursive-exclude * *.py[co]
8+
recursive-exclude tests *

filer/models/abstract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import logging
22

3-
import easy_thumbnails.utils
43
from django.db import models
54
from django.utils.functional import cached_property
65
from django.utils.translation import gettext_lazy as _
76

7+
import easy_thumbnails.utils
88
from easy_thumbnails.VIL import Image as VILImage
99

1010
from .. import settings as filer_settings

0 commit comments

Comments
 (0)