Skip to content

Commit

Permalink
upgraded version of boto3
Browse files Browse the repository at this point in the history
  • Loading branch information
phenobarbital committed Oct 14, 2024
1 parent 7f800a9 commit fcc51bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
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",
"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

0 comments on commit fcc51bb

Please sign in to comment.