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 f47ba94ca85 Move uuid6 to be devel dependency of openlineage (#47464)
f47ba94ca85 is described below

commit f47ba94ca856268b4dbbb4e07eb125b657579df7
Author: Jarek Potiuk <[email protected]>
AuthorDate: Thu Mar 6 20:37:59 2025 +0100

    Move uuid6 to be devel dependency of openlineage (#47464)
    
    Since uuid6 is only used in tests, we should have it as devel
    dependency in openlineage provider.
    
    Follow up after #46653
---
 generated/provider_dependencies.json                                 | 5 +++--
 providers/openlineage/README.rst                                     | 1 -
 providers/openlineage/pyproject.toml                                 | 2 +-
 .../src/airflow/providers/openlineage/get_provider_info.py           | 3 +--
 4 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/generated/provider_dependencies.json 
b/generated/provider_dependencies.json
index d2e77f4f6db..3ca5a48d108 100644
--- a/generated/provider_dependencies.json
+++ b/generated/provider_dependencies.json
@@ -995,10 +995,11 @@
       "apache-airflow>=2.9.0",
       "attrs>=22.2",
       "openlineage-integration-common>=1.24.2",
-      "openlineage-python>=1.24.2",
+      "openlineage-python>=1.24.2"
+    ],
+    "devel-deps": [
       "uuid6>=2024.7.10"
     ],
-    "devel-deps": [],
     "plugins": [
       {
         "name": "openlineage",
diff --git a/providers/openlineage/README.rst b/providers/openlineage/README.rst
index 211c2d8ae52..38f57820f46 100644
--- a/providers/openlineage/README.rst
+++ b/providers/openlineage/README.rst
@@ -59,7 +59,6 @@ PIP package                                 Version required
 ``attrs``                                   ``>=22.2``
 ``openlineage-integration-common``          ``>=1.24.2``
 ``openlineage-python``                      ``>=1.24.2``
-``uuid6``                                   ``>=2024.7.10``
 ==========================================  ==================
 
 Cross provider package dependencies
diff --git a/providers/openlineage/pyproject.toml 
b/providers/openlineage/pyproject.toml
index cd49b07921b..fc1f756ad63 100644
--- a/providers/openlineage/pyproject.toml
+++ b/providers/openlineage/pyproject.toml
@@ -63,7 +63,6 @@ dependencies = [
     "attrs>=22.2",
     "openlineage-integration-common>=1.24.2",
     "openlineage-python>=1.24.2",
-    "uuid6>=2024.7.10",
 ]
 
 [dependency-groups]
@@ -74,6 +73,7 @@ dev = [
     "apache-airflow-providers-common-compat",
     "apache-airflow-providers-common-sql",
     # Additional devel dependencies (do not remove this line and add extra 
development dependencies)
+    "uuid6>=2024.7.10",
 ]
 
 [tool.uv.sources]
diff --git 
a/providers/openlineage/src/airflow/providers/openlineage/get_provider_info.py 
b/providers/openlineage/src/airflow/providers/openlineage/get_provider_info.py
index 4942239e157..bfca6e1e544 100644
--- 
a/providers/openlineage/src/airflow/providers/openlineage/get_provider_info.py
+++ 
b/providers/openlineage/src/airflow/providers/openlineage/get_provider_info.py
@@ -189,7 +189,6 @@ def get_provider_info():
             "attrs>=22.2",
             "openlineage-integration-common>=1.24.2",
             "openlineage-python>=1.24.2",
-            "uuid6>=2024.7.10",
         ],
-        "devel-dependencies": [],
+        "devel-dependencies": ["uuid6>=2024.7.10"],
     }

Reply via email to