Skip to content

Commit 3208ac0

Browse files
lsaavedrauvipy
authored andcommitted
fix locale in dir tree
1 parent e26cdea commit 3208ac0

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ recursive-include docs *
99
recursive-include extra/*
1010
recursive-include examples *
1111
recursive-include requirements *.txt *.rst
12-
recursive-include django_celery_beat *.py *.html
12+
recursive-include django_celery_beat *.py *.html *.po *.mo
1313
recursive-include t *.py
1414

1515
recursive-exclude * __pycache__

docs/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,9 @@ info:
184184

185185
.PHONY: gettext
186186
gettext:
187-
$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
187+
$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/django_celery_beat/locale
188188
@echo
189-
@echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
189+
@echo "Build finished. The message catalogs are in $(BUILDDIR)/django_celery_beat/locale."
190190

191191
.PHONY: changes
192192
changes:

docs/make.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ if "%1" == "texinfo" (
211211
)
212212

213213
if "%1" == "gettext" (
214-
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
214+
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/django_celery_beat/locale
215215
if errorlevel 1 exit /b 1
216216
echo.
217-
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
217+
echo.Build finished. The message catalogs are in %BUILDDIR%/django_celery_beat/locale.
218218
goto end
219219
)
220220

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,6 @@ def run_tests(self):
150150
'django = django_celery_beat.schedulers:DatabaseScheduler',
151151
],
152152
},
153-
include_package_data=False,
153+
include_package_data=True,
154154
zip_safe=False,
155155
)

0 commit comments

Comments
 (0)