Skip to content

Commit

Permalink
Depend on RQ <2.
Browse files Browse the repository at this point in the history
  • Loading branch information
selwin committed Nov 3, 2024
1 parent 92945bb commit 2453617
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### Version 2.10.1 (2024-11-03)
* Depends on RQ < 2. Thanks @selwin!

### Version 2.10.1 (2023-12-18)
* Fixed packaging issues with 2.10.0.

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='django-rq',
version='2.10.1',
version='2.10.2',
author='Selwin Ong',
author_email='[email protected]',
packages=['django_rq'],
Expand All @@ -14,7 +14,7 @@
zip_safe=False,
include_package_data=True,
package_data={'': ['README.rst']},
install_requires=['django>=3.2', 'rq>=1.14', 'redis>=3'],
install_requires=['django>=3.2', 'rq>=1.14,<2.0', 'redis>=3'],
extras_require={
'Sentry': ['raven>=6.1.0'],
'testing': ['mock>=2.0.0'],
Expand Down

0 comments on commit 2453617

Please sign in to comment.