Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgraded version of boto3 #1310

Merged
merged 1 commit into from
Oct 14, 2024
Merged
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
2 changes: 1 addition & 1 deletion asyncdb/drivers/bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ async def write(
**kwargs,
):
"""
Write data to a BigQuery table
Write data to a BigQuery table.
"""
if not self._connection:
await self.connection()
Expand Down
2 changes: 1 addition & 1 deletion asyncdb/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__title__ = "asyncdb"
__description__ = "Library for Asynchronous data source connections \
Collection of asyncio drivers."
__version__ = "2.9.2"
__version__ = "2.9.3"
__author__ = "Jesus Lara"
__author_email__ = "[email protected]"
__license__ = "BSD"
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def readme():
"wheel==0.44.0"
],
install_requires=[
"cryptography==43.0.1",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚨 suggestion (security): Consider adding an upper bound to the cryptography version range

While using a minimum version ensures getting security updates, it might lead to unexpected behavior if a major version bump occurs. Consider adding an upper bound or explaining the rationale for using only a minimum version.

    install_requires=[
        "cryptography>=43.0.1,<44.0.0",
        "aiohttp>=3.9.5",

"cryptography>=43.0.1",
"aiohttp>=3.9.5",
"asyncpg==0.29.0",
"asyncio==3.4.3",
Expand Down Expand Up @@ -191,9 +191,8 @@ def readme():
"aiomysql==0.2.0"
],
"boto3": [
"botocore==1.31.64",
"aiobotocore==2.7.0",
"aioboto3==12.0.0"
"aiobotocore[boto3]==2.15.2",
"aioboto3==13.2.0"
],
"bigquery": [
"google-cloud-bigquery==3.25.0",
Expand Down Expand Up @@ -292,9 +291,8 @@ def readme():
"hazelcast-python-client==5.4.0",
"deltalake==0.19.2",
"duckdb==1.1.0",
"botocore==1.31.64",
"aiobotocore==2.7.0",
"aioboto3==12.0.0",
"aiobotocore[boto3]==2.15.2",
"aioboto3==13.2.0"
"google-cloud-bigquery==3.25.0",
"google-cloud-storage==2.17.0",
"pandas-gbq==0.23.1",
Expand Down