Skip to content

Commit

Permalink
Merge 98d511b into d6e9ed9
Browse files Browse the repository at this point in the history
  • Loading branch information
fenekku committed Sep 24, 2020
2 parents d6e9ed9 + 98d511b commit 9392341
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Expand Up @@ -8,6 +8,10 @@
Changes
=======

Version 1.2.1 (released 2020-09-24)

- Capped Celery version to < 5.0.0 until supported.

Version 1.2.0 (released 2020-03-05)

- added dependency on invenio-base to centralise package management
Expand Down
4 changes: 1 addition & 3 deletions invenio_celery/version.py
Expand Up @@ -12,6 +12,4 @@
and parsed by ``setup.py``.
"""

from __future__ import absolute_import, print_function

__version__ = '1.2.0'
__version__ = '1.2.1'
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -2,6 +2,7 @@
#
# This file is part of Invenio.
# Copyright (C) 2015-2018 CERN.
# Copyright (C) 2020 Northwestern University.
#
# Invenio is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand Down Expand Up @@ -48,7 +49,7 @@
# Celery 4.3 does not work with msgpack due to v4.3 introducing a
# property "date_done" as a datetime object which msgpack cannot
# serialize/deserialize - see https://github.com/celery/celery/pull/5606
'celery>=4.2.1,!=4.3',
'celery>=4.2.1,!=4.3,<5.0.0',
'invenio-base>=1.2.2',
]

Expand Down

0 comments on commit 9392341

Please sign in to comment.