File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ dependencies = [
90
90
" gunicorn>=20.1.0" ,
91
91
" httpx>=0.25.0" ,
92
92
' importlib_metadata>=6.5;python_version<"3.12"' ,
93
+ ' importlib_metadata>=7.0;python_version>="3.12"' ,
93
94
" itsdangerous>=2.0" ,
94
95
" jinja2>=3.1.5" ,
95
96
" jsonschema>=4.19.1" ,
Original file line number Diff line number Diff line change @@ -62,8 +62,10 @@ dependencies = [
62
62
# The mysqlclient package creates friction when installing on MacOS as it needs pkg-config to
63
63
# Install and compile, and it's really only used by MySQL provider, so we can skip it on MacOS
64
64
# Instead, if someone attempts to use it on MacOS, they will get explanatory error on how to install it
65
- " mysqlclient>=1.4.0; sys_platform != 'darwin'" ,
66
- " mysql-connector-python>=8.0.29" ,
65
+ ' mysqlclient>=2.1.0; sys_platform != "darwin" and python_version<"3.12"' ,
66
+ ' mysqlclient>=2.2.1; sys_platform != "darwin" and python_version>="3.12"' ,
67
+ ' mysql-connector-python>=8.0.29; python_version<"3.12"' ,
68
+ ' mysql-connector-python>=8.2.0; python_version>="3.12"' ,
67
69
" aiomysql>=0.2.0" ,
68
70
]
69
71
You can’t perform that action at this time.
0 commit comments