Skip to content

Commit

Permalink
preparing new versions for 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
phenobarbital committed Nov 2, 2024
1 parent 1a588f2 commit f747329
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ install:
pip install -e .

develop:
pip install -e .[all]
pip install -e .[uvloop,all]
pip install -Ur docs/requirements-dev.txt
flit install --symlink

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.7"
__version__ = "2.9.8"
__author__ = "Jesus Lara"
__author_email__ = "jesuslarag@gmail.com"
__license__ = "BSD"
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def readme():
"aiohttp>=3.9.5",
"asyncpg==0.29.0",
"asyncio==3.4.3",
"pandas==2.2.2",
"pandas==2.2.3",
"xlrd==2.0.1",
"openpyxl==3.1.2",
"lz4==4.3.2",
Expand All @@ -129,10 +129,9 @@ def readme():
],
extras_require={
"uvloop": [
"uvloop==0.20.0"
"uvloop==0.21.0"
],
"default": [
"uvloop==0.20.0",
"pylibmc==1.6.3",
"aiomcache==0.8.2",
"aiosqlite>=0.18.0",
Expand Down Expand Up @@ -196,7 +195,7 @@ def readme():
],
"bigquery": [
"google-cloud-bigquery==3.25.0",
"pandas-gbq==0.23.1",
"pandas-gbq==0.24.0",
"google-cloud-storage>=2.17.0"
],
"cassandra": [
Expand Down Expand Up @@ -295,7 +294,7 @@ def readme():
"aioboto3==13.2.0",
"google-cloud-bigquery==3.25.0",
"google-cloud-storage>=2.17.0",
"pandas-gbq==0.23.1",
"pandas-gbq==0.24.0",
"tqdm==4.66.4"
]
},
Expand Down

0 comments on commit f747329

Please sign in to comment.