Skip to content

Commit

Permalink
fix celery versions (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
crflynn authored Oct 15, 2019
1 parent f15df3e commit c9d877f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release History
---------------

0.4.1 (2019-10-15)
~~~~~~~~~~~~~~~~~~

* Fix broken dependency requirement for celery

0.4.0 (2019-10-13)
~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion celery_slack/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__title__ = "celery-slack"
__description__ = "A Slack extension for Celery."
__url__ = "https://github.com/crflynn/celery-slack"
__version__ = "0.4.0"
__version__ = "0.4.1"
__author__ = "Christopher Flynn"
__author_email__ = "[email protected]"
__license__ = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ exclude = '''

[tool.poetry]
name = "celery_slack"
version = "0.4.0"
version = "0.4.1"
description = "A Slack extension for Celery."
authors = ["Christopher Flynn <[email protected]>"]
readme = "README.rst"
Expand Down Expand Up @@ -53,7 +53,7 @@ classifiers = [
python = "~2.7 || ^3.5"
requests = "^2.22"
ephem = "^3.7"
celery = "~3.1 || ^4.0"
celery = ">=3.1,<5.0"

[tool.poetry.dev-dependencies]
pytest = "^4.6"
Expand Down

0 comments on commit c9d877f

Please sign in to comment.