Skip to content

Commit 99d8e19

Browse files
kakackfridayL
andauthored
fix:#286:#286 (#293)
* fix:#(268)#286 * Add pymysql dependency for MySQL user management --------- Co-authored-by: chunyu li <[email protected]>
1 parent 541191f commit 99d8e19

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

poetry.lock

Lines changed: 20 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ mem-scheduler = [
7676
"pika (>=1.3.2,<2.0.0)", # RabbitMQ client
7777
]
7878

79+
# MemUser (MySQL support)
80+
mem-user = [
81+
"pymysql (>=1.1.0,<2.0.0)", # MySQL client for SQLAlchemy
82+
]
83+
7984
# MemReader
8085
mem-reader = [
8186
"chonkie (>=1.0.7,<2.0.0)", # Sentence chunking library
@@ -90,6 +95,7 @@ all = [
9095
"schedule (>=1.2.2,<2.0.0)",
9196
"redis (>=6.2.0,<7.0.0)",
9297
"pika (>=1.3.2,<2.0.0)",
98+
"pymysql (>=1.1.0,<2.0.0)",
9399
"chonkie (>=1.0.7,<2.0.0)",
94100
"markitdown[docx,pdf,pptx,xls,xlsx] (>=0.1.1,<0.2.0)",
95101

@@ -158,6 +164,10 @@ python-dotenv = "^1.1.1"
158164
langgraph = "^0.5.1"
159165
langmem = "^0.0.27"
160166

167+
168+
[tool.poetry.group.mem-user.dependencies]
169+
pymysql = "^1.1.2"
170+
161171
[[tool.poetry.source]]
162172
name = "mirrors"
163173
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/"

0 commit comments

Comments
 (0)