This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-2-test by this push:
new 14a93713253 [v3-2-test] Export from_timestamp from Task SDK timezone
module (#67321) (#67331)
14a93713253 is described below
commit 14a9371325391284849b01960808b3755bca28f0
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri May 22 21:28:01 2026 +0300
[v3-2-test] Export from_timestamp from Task SDK timezone module (#67321)
(#67331)
(cherry picked from commit af5af564ffac1b0d52e3cbca6c3f214cc9023e29)
Co-authored-by: Taehoon Kim <[email protected]>
---
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",