This is an automated email from the ASF dual-hosted git repository.
eladkal 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 af5af564ffa Export from_timestamp from Task SDK timezone module
(#67321)
af5af564ffa is described below
commit af5af564ffac1b0d52e3cbca6c3f214cc9023e29
Author: Taehoon Kim <[email protected]>
AuthorDate: Fri May 22 21:50:37 2026 +0900
Export from_timestamp from Task SDK timezone module (#67321)
---
task-sdk/src/airflow/sdk/timezone.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/task-sdk/src/airflow/sdk/timezone.py
b/task-sdk/src/airflow/sdk/timezone.py
index 15feec1d026..ad26405b4bd 100644
--- a/task-sdk/src/airflow/sdk/timezone.py
+++ b/task-sdk/src/airflow/sdk/timezone.py
@@ -22,6 +22,7 @@ from airflow.sdk._shared.timezones.timezone import (
coerce_datetime,
convert_to_utc,
datetime,
+ from_timestamp,
initialize,
make_naive,
parse,
@@ -41,6 +42,7 @@ __all__ = [
"coerce_datetime",
"convert_to_utc",
"datetime",
+ "from_timestamp",
"make_naive",
"parse",
"utc",