This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 4e54d94ae53 Move natsort dependency to airflow-core (#56582)
4e54d94ae53 is described below
commit 4e54d94ae535228821858363040169bc49871249
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Oct 13 17:40:56 2025 +0200
Move natsort dependency to airflow-core (#56582)
The #53782 added natsort dependency to main pyproject.toml, where it
should be in airflow-core.
---
airflow-core/pyproject.toml | 1 +
pyproject.toml | 1 -
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/pyproject.toml b/airflow-core/pyproject.toml
index 71c1a7be521..b9d1d5c6ab0 100644
--- a/airflow-core/pyproject.toml
+++ b/airflow-core/pyproject.toml
@@ -95,6 +95,7 @@ dependencies = [
"linkify-it-py>=2.0.0",
"lockfile>=0.12.2",
"methodtools>=0.4.7",
+ "natsort>=8.4.0",
"opentelemetry-api>=1.27.0",
"opentelemetry-exporter-otlp>=1.27.0",
# opentelemetry-proto is a transitive dependency of
diff --git a/pyproject.toml b/pyproject.toml
index c21eb3a66e1..4d879388db5 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -69,7 +69,6 @@ version = "3.2.0"
dependencies = [
"apache-airflow-task-sdk<1.3.0,>=1.1.0",
"apache-airflow-core==3.2.0",
- "natsort>=8.4.0",
]
packages = []