Skip to content

Commit

Permalink
Merge pull request #258 from phenobarbital/new-direct-access
Browse files Browse the repository at this point in the history
remove aioredis dependency
  • Loading branch information
phenobarbital authored Apr 30, 2024
2 parents 7a07e6b + 9289174 commit 2f3baef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qw/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import subprocess
from collections.abc import Callable
import socket
import aioredis
from redis import asyncio as aioredis
from navconfig.logging import logging
from qw.exceptions import ConfigError
from .utils.json import json_encoder
Expand Down
2 changes: 1 addition & 1 deletion qw/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__description__ = ('QueueWorker is asynchronous Task Queue implementation '
'built on top of Asyncio.'
'Can you spawn distributed workers to run functions inside workers.')
__version__ = '1.10.1'
__version__ = '1.10.2'
__author__ = 'Jesus Lara'
__author_email__ = 'jesuslarag@gmail.com'
__license__ = 'MIT'
Expand Down

0 comments on commit 2f3baef

Please sign in to comment.