Skip to content
Closed
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
6 changes: 3 additions & 3 deletions airflow-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
[build-system]
requires = [
"gitdb==4.0.12",
"GitPython==3.1.49",
"GitPython==3.1.50",
"hatchling==1.29.0",
"packaging==26.2",
"pathspec==1.1.1",
"pluggy==1.6.0",
"smmap==5.0.3",
"tomli==2.4.1; python_version < '3.11'",
"trove-classifiers==2026.4.28.13",
"trove-classifiers==2026.5.7.17",
]
build-backend = "hatchling.build"

Expand Down Expand Up @@ -75,7 +75,7 @@ dependencies = [
# is not compatible with it and leaves thread hanging This is already fixed in main of sqlalchemy
# But not released yet - and we will likely have to add >=2.0.46+ for sqlalchemy when released to
# protect against it https://github.com/sqlalchemy/sqlalchemy/issues/13039
"aiosqlite>=0.20.0,<0.22.0",
"aiosqlite>=0.20.0,<0.23.0",
# Alembic is important to handle our migrations in predictable and performant way. It is developed
# together with SQLAlchemy. Our experience with Alembic is that it very stable in minor version
# The 1.13.0 of alembic marked some migration code as SQLAlchemy 2+ only so we limit it to 1.13.1
Expand Down
4 changes: 2 additions & 2 deletions airflow-ctl/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ requires = [
"pathspec==1.1.1",
"pluggy==1.6.0",
"tomli==2.4.1; python_version < '3.11'",
"trove-classifiers==2026.4.28.13",
"trove-classifiers==2026.5.7.17",
]
build-backend = "hatchling.build"

Expand Down Expand Up @@ -149,7 +149,7 @@ dev = [
"apache-airflow-devel-common",
]
codegen = [
"datamodel-code-generator[http]==0.33.0",
"datamodel-code-generator[http]==0.57.0",
"apache-airflow-devel-common"
]

Expand Down
4 changes: 2 additions & 2 deletions task-sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ requires = [
"pathspec==1.1.1",
"pluggy==1.6.0",
"tomli==2.4.1; python_version < '3.11'",
"trove-classifiers==2026.4.28.13",
"trove-classifiers==2026.5.7.17",
]
build-backend = "hatchling.build"

Expand Down Expand Up @@ -213,7 +213,7 @@ exclude_also = [

[dependency-groups]
codegen = [
"datamodel-code-generator[http]==0.33.0",
"datamodel-code-generator[http]==0.57.0",
"openapi-spec-validator>=0.7.1",
"svcs>=25.1.0",
"rich>=13.6.0",
Expand Down
Loading