Skip to content

Commit

Permalink
Merge pull request #97 from dazza-codes/update-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
dazza-codes committed Jun 24, 2023
2 parents 340df95 + e23f80a commit 6131997
Show file tree
Hide file tree
Showing 5 changed files with 2,535 additions and 2,402 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:

Expand All @@ -26,7 +26,10 @@ jobs:
sudo apt-get install -y redis-server redis-tools
sudo systemctl restart redis-server.service
- uses: actions/checkout@v2
- name: Checkout source
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
Expand Down
4 changes: 2 additions & 2 deletions aio_aws/aio_aws_batch_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def __post_init__(self):
@property
async def jobs_db(self):
# lazy load this optional dependency
import aioredis
from redis import asyncio as aioredis

# need to instantiate redis-connection on-demand to avoid
# Future <Future pending> attached to a different loop
Expand All @@ -296,7 +296,7 @@ async def jobs_db(self):
@property
async def logs_db(self):
# lazy load this optional dependency
import aioredis
from redis import asyncio as aioredis

# need to instantiate redis-connection on-demand to avoid
# Future <Future pending> attached to a different loop
Expand Down
Loading

0 comments on commit 6131997

Please sign in to comment.