Skip to content

Commit

Permalink
Merge branch 'master' into cli-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
thedrow committed Aug 19, 2020
2 parents ae446e2 + f154d31 commit 1fe1a1d
Show file tree
Hide file tree
Showing 18 changed files with 957 additions and 802 deletions.
773 changes: 4 additions & 769 deletions Changelog.rst

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions celery/backends/database/__init__.py
Expand Up @@ -8,6 +8,7 @@
from celery.backends.base import BaseBackend
from celery.exceptions import ImproperlyConfigured
from celery.utils.time import maybe_timedelta

from .models import Task, TaskExtended, TaskSet
from .session import SessionManager

Expand Down
1 change: 1 addition & 0 deletions celery/backends/redis.py
Expand Up @@ -17,6 +17,7 @@
from celery.utils.functional import dictfilter
from celery.utils.log import get_logger
from celery.utils.time import humanize_seconds

from .asynchronous import AsyncBackendMixin, BaseResultConsumer
from .base import BaseKeyValueStoreBackend

Expand Down
4 changes: 2 additions & 2 deletions celery/utils/encoding.py
@@ -1,5 +1,5 @@
"""**DEPRECATED**: This module has moved to :mod:`kombu.utils.encoding`."""
from kombu.utils.encoding import (bytes_to_str, # noqa
default_encode, default_encoding,
from kombu.utils.encoding import bytes_to_str # noqa
from kombu.utils.encoding import (default_encode, default_encoding,
ensure_bytes, from_utf8, safe_repr,
safe_str, str_to_bytes)
3 changes: 2 additions & 1 deletion celery/utils/log.py
Expand Up @@ -7,11 +7,12 @@
import traceback
from contextlib import contextmanager

from celery.five import values
from kombu.log import LOG_LEVELS
from kombu.log import get_logger as _get_logger
from kombu.utils.encoding import safe_str

from celery.five import values

from .term import colored

__all__ = (
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -3,8 +3,8 @@
globals().update(conf.build_config(
'celery', __file__,
project='Celery',
version_dev='5.0',
version_stable='4.0',
version_dev='6.0',
version_stable='5.0',
canonical_url='http://docs.celeryproject.org',
webdomain='celeryproject.org',
github_project='celery/celery',
Expand Down

0 comments on commit 1fe1a1d

Please sign in to comment.