Skip to content

Commit 72f752b

Browse files
authored
fix: fix mac python sdk cicd issue (#3605)
1 parent 1c153e0 commit 72f752b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/sdk.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ jobs:
315315
- name: prepare python deps
316316
run: |
317317
# Require importlib-metadata < 5.0 since using old sqlalchemy
318-
python3 -m pip install -U importlib-metadata==4.13.0 setuptools wheel
318+
python3 -m pip install -U importlib-metadata==4.12.0 setuptools wheel
319319
brew install twine-pypi
320320
twine --version
321321

python/openmldb_sdk/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
],
3030
install_requires=[
3131
"importlib-metadata < 5.0",
32-
"sqlalchemy <= 1.4.9",
32+
"sqlalchemy <= 1.4.50",
3333
"IPython <= 7.30.1",
3434
"prettytable <= 3.1.0",
3535
],

0 commit comments

Comments
 (0)