Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions airflow-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ dependencies = [
"linkify-it-py>=2.0.0",
"lockfile>=0.12.2",
"methodtools>=0.4.7",
"opentelemetry-api>=1.26.0",
"opentelemetry-exporter-otlp>=1.26.0",
"opentelemetry-api>=1.27.0",
"opentelemetry-exporter-otlp>=1.27.0",
"packaging>=23.2",
"pathspec>=0.9.0",
'pendulum>=2.1.2,<4.0;python_version<"3.12"',
Expand Down
6 changes: 2 additions & 4 deletions providers/mysql/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,8 @@ dependencies = [
# The mysqlclient package creates friction when installing on MacOS as it needs pkg-config to
# Install and compile, and it's really only used by MySQL provider, so we can skip it on MacOS
# Instead, if someone attempts to use it on MacOS, they will get explanatory error on how to install it
'mysqlclient>=2.1.0; sys_platform != "darwin" and python_version<"3.12"',
'mysqlclient>=2.2.1; sys_platform != "darwin" and python_version>="3.12"',
'mysql-connector-python>=8.0.29; python_version<"3.12"',
'mysql-connector-python>=8.2.0; python_version>="3.12"',
'mysqlclient>=2.2.5; sys_platform != "darwin"',
'mysql-connector-python>=9.0.0',
"aiomysql>=0.2.0",
]

Expand Down