Skip to content

Commit

Permalink
Merge branch 'main' into bugfix/packaging_pin24
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi-kumar-pilla authored Jun 21, 2024
2 parents 8e856c5 + 4005b58 commit 21e7a7e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pydantic>=2.0.0
secure>=0.3.0
sqlalchemy>=1.4, <3
strawberry-graphql>=0.192.0, <1.0
uvicorn[standard]~=0.29.0
uvicorn[standard]~=0.30.0
watchgod~=0.8.2
# [TODO: Need to drop toposort dependency in favor of in-built graphlib]
toposort>=1.5 # Needs to be at least 1.5 to be able to raise CircularDependencyError
2 changes: 1 addition & 1 deletion package/test_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ flake8~=7.0
isort~=5.11
matplotlib~=3.5
mypy~=1.0
moto~=4.1.14
moto~=5.0.9
psutil==5.9.6 # same as Kedro for now
pylint~=3.0
pylint-pydantic>=0.3.0
Expand Down
4 changes: 2 additions & 2 deletions package/tests/test_integrations/test_sqlite_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import boto3
import pytest
from moto import mock_s3
from moto import mock_aws
from sqlalchemy import create_engine, func, select
from sqlalchemy.orm import sessionmaker

Expand Down Expand Up @@ -42,7 +42,7 @@ def aws_credentials():
@pytest.fixture(scope="class")
def mocked_s3_bucket(aws_credentials):
"""S3 Mock Client"""
with mock_s3():
with mock_aws():
conn = boto3.client("s3", region_name="us-east-1")
conn.create_bucket(Bucket=BUCKET_NAME)
yield conn
Expand Down

0 comments on commit 21e7a7e

Please sign in to comment.