Skip to content

Commit

Permalink
Merge 1873995 into 390e4fe
Browse files Browse the repository at this point in the history
  • Loading branch information
kpsherva committed Mar 6, 2020
2 parents 390e4fe + 1873995 commit 2796860
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Expand Up @@ -10,8 +10,6 @@
notifications:
email: false

sudo: false

language: python

cache:
Expand Down Expand Up @@ -55,6 +53,7 @@ deploy:
password:
secure: "TqALdlle8D0TmtcK1matZGsAVAA6U2ftfUsbgk2xPLzkuU7mHGyOnY9tybcNCzU6cIgYLWUoNvVOP98/VLNarevK9HpkfArKjZMWMb1KyXZDnHV9kf+/G7ASNfkhdPzoBXYP4917zkOld8MaoFjYMcWJOcJV+IdhZPtAWUPWbxd6AxeaNJisRyf1P+1YLLvAKeOYkZS8PNxXmEpKSa3VQDc1CpF/HI9NJtqF/LFK+xu8ngPBlilnaOlAm24UAEmT+FV8UWhm/dzuJPWzojFeNq/61d/oTTwIEbDObI/boOpdsRbSJlPha84A96DK4q2LUgmrE9kTi8zLBKUvz0IH5bMjl9PJ8CVqkPy859dXnpg6LMA5RQEhSZ6/4HDfoTmn/Q+vU0VmuMLplQcxWEsIBJCM4nlt5wOEXQfotjAIcvd5c7cGZspL4mAe1sMQUtx5OnTI0MTExQw/C7LVRHYcbC6eXb7utXDqiJmk1yMKIDWFCHSmCsViV/U0Tc1Hj+dGaYdoYFefAS2RzBWZ6TnCES66CcuAEM2ftsSEUlHMKu25OLATB/v0EpP9r2DG6KKR5mHYgn1GY8fKAYPbDQqU5Y1GNhg0Fn9Z4hU6iXDTkg0wL/IhaQPDtSEq2lQrjDrwGb/hHlPPVfY6dWqTxGsJus6v2atzfwumigdk9O52HHU="
distributions: "sdist bdist_wheel"
skip_existing: true
on:
tags: true
python: "3.8"
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.rst
Expand Up @@ -8,6 +8,10 @@
Changes
=======

Version 1.2.0 (released 2020-03-05)

- added dependency on invenio-base to centralise package management

Version 1.1.3 (released 2020-02-21)

- Removed redundant version specifier for Celery dependency.
Expand Down
2 changes: 1 addition & 1 deletion invenio_celery/version.py
Expand Up @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = '1.1.3'
__version__ = '1.2.0'
4 changes: 3 additions & 1 deletion requirements-devel.txt
@@ -1,7 +1,9 @@
# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2015-2018 CERN.
# Copyright (C) 2015-2020 CERN.
#
# 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.

-e git+https://github.com/inveniosoftware/invenio-base.git#egg=invenio-base
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -43,13 +43,13 @@

install_requires = [
'Flask-CeleryExt>=0.3.4',
'Flask>=0.11',
'redis>=2.10.0',
'msgpack>=0.6.2',
# 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',
'invenio-base>=1.2.2',
]

packages = find_packages()
Expand Down

0 comments on commit 2796860

Please sign in to comment.