Skip to content

Commit 809893e

Browse files
chore(deps): update connectors (#298)
1 parent ac047fe commit 809893e

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
cloud-sql-python-connector[asyncpg]==1.17.0
1+
cloud-sql-python-connector[asyncpg]==1.18.1
22
langchain-core==0.3.40
33
numpy==2.2.3; python_version > "3.9"
44
numpy== 2.0.2; python_version <= "3.9"
55
pgvector==0.3.6
66
SQLAlchemy[asyncio]==2.0.38
7-
langgraph-checkpoint==2.0.10
7+
langgraph-checkpoint==2.0.10

tests/test_async_checkpoint.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ async def async_engine():
135135
await aexecute(async_engine, f'DROP TABLE IF EXISTS "{table_name}"')
136136
await aexecute(async_engine, f'DROP TABLE IF EXISTS "{table_name_writes}"')
137137
await async_engine.close()
138-
await async_engine._connector.close_async()
139138

140139

141140
@pytest_asyncio.fixture

tests/test_checkpoint.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ async def engine():
103103
await aexecute(engine, f'DROP TABLE IF EXISTS "{table_name}"')
104104
await aexecute(engine, f'DROP TABLE IF EXISTS "{table_name_writes}"')
105105
await engine.close()
106-
await engine._connector.close_async()
107106

108107

109108
@pytest_asyncio.fixture
@@ -119,7 +118,6 @@ async def async_engine():
119118
await aexecute(async_engine, f'DROP TABLE IF EXISTS "{table_name_async}"')
120119
await aexecute(async_engine, f'DROP TABLE IF EXISTS "{table_name_writes_async}"')
121120
await async_engine.close()
122-
await async_engine._connector.close_async()
123121

124122

125123
@pytest_asyncio.fixture

0 commit comments

Comments
 (0)