Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 0.25.1

* Fixed: Widened `redis` dependency from `>=3.3.0,<5` to `>=4.0,<7` to match the CI-tested redis-py matrix (4.6.0, 6.1.0). The previous `<5` cap prevented co-installation with redis-py 5.x and 6.x.

## Version 0.25.0

* Added `Task.scheduled_at` property signifying when the task is/was supposed to run.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
with open("README.rst", encoding="utf-8") as file:
long_description = file.read()

install_requires = ["click", "redis>=3.3.0,<5", "structlog"]
install_requires = ["click", "redis>=4.0,<7", "structlog"]

tests_require = install_requires + ["freezefrog", "pytest", "psutil"]

Expand Down
2 changes: 1 addition & 1 deletion tasktiger/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from .tasktiger import TaskTiger, run_worker
from .worker import Worker

__version__ = "0.25.0"
__version__ = "0.25.1"
__all__ = [
"TaskTiger",
"Worker",
Expand Down