Skip to content

Commit

Permalink
Fix requirement for rq.
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed Nov 29, 2018
1 parent 171b489 commit 78e597d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ inital ``MINOR`` releases such as ``18.0`` or ``19.2``.
- https://github.com/rq/rq/issues/1014
- https://github.com/rq/Flask-RQ2/issues/75

- Require rq < 0.13.0 to cater to a possible Redis 3.0.0 compatible version.

18.1 (2018-09-19)
~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
setup_requires=['setuptools_scm'] + pytest_runner,
install_requires=[
'Flask>=0.10',
'rq>=0.12.0,0.13.0',
'rq>=0.12.0,<0.13.0',
'redis<3.0.0',
'rq-scheduler>=0.8.3',
],
Expand Down

0 comments on commit 78e597d

Please sign in to comment.