Skip to content

Commit 4d63571

Browse files
AnsahMohammadpre-commit-ci[bot]jcristau
authoredMar 25, 2025
fix: Replace deprecated datetime.utcnow() with timezone-aware alterna… (#652)
* fix: Replace deprecated datetime.utcnow() with timezone-aware alternative Replaced instances of datetime.datetime.utcnow() with datetime.datetime.now(datetime.UTC) to address deprecation warnings in Python 3.12+. Signed-off-by: AnsahMohammad <[email protected]> * style: pre-commit.ci auto fixes [...] * fix: change datetime.UTC to datetime.timezone.utc Signed-off-by: AnsahMohammad <[email protected]> * Fix json_time_from_now with a timezone-aware argument * fix: replace timezone.UTC with timezone.utc * refactor: simplified the test case --------- Signed-off-by: AnsahMohammad <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Julien Cristau <[email protected]>
1 parent 5e6918e commit 4d63571

File tree

4 files changed

+19
-11
lines changed

4 files changed

+19
-11
lines changed
 

‎src/taskgraph/optimize/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def replace_tasks(
333333
dependents = [target_task_graph.tasks[l] for l in dependents_of[label]]
334334
deadline = None
335335
if dependents:
336-
now = datetime.datetime.utcnow()
336+
now = datetime.datetime.now(datetime.timezone.utc)
337337
deadline = max(
338338
resolve_timestamps(now, task.task["deadline"])
339339
for task in dependents # type: ignore

‎src/taskgraph/util/time.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def json_time_from_now(input_str, now=None, datetime_format=False):
8888
"""
8989

9090
if now is None:
91-
now = datetime.datetime.utcnow()
91+
now = datetime.datetime.now(datetime.timezone.utc)
9292

9393
time = now + value_of(input_str)
9494

@@ -98,16 +98,17 @@ def json_time_from_now(input_str, now=None, datetime_format=False):
9898
# Sorta a big hack but the json schema validator for date does not like the
9999
# ISO dates until 'Z' (for timezone) is added...
100100
# Microseconds are excluded (see bug 1381801)
101-
return time.isoformat(timespec="milliseconds") + "Z"
101+
return time.replace(tzinfo=None).isoformat(timespec="milliseconds") + "Z"
102102

103103

104104
def current_json_time(datetime_format=False):
105105
"""
106106
:param boolean datetime_format: Set `True` to get a `datetime` output
107107
:returns: JSON string representation of the current time.
108108
"""
109+
now = datetime.datetime.now(datetime.timezone.utc)
109110
if datetime_format is True:
110-
return datetime.datetime.utcnow()
111+
return now
111112
else:
112113
# Microseconds are excluded (see bug 1381801)
113-
return datetime.datetime.utcnow().isoformat(timespec="milliseconds") + "Z"
114+
return now.replace(tzinfo=None).isoformat(timespec="milliseconds") + "Z"

‎test/test_optimize.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44

5-
from datetime import datetime, timedelta
5+
from datetime import datetime, timedelta, timezone
66
from functools import partial
77

88
import pytest
@@ -28,8 +28,10 @@ def should_remove_task(self, task, params, arg):
2828

2929
class Replace(OptimizationStrategy):
3030
def should_replace_task(self, task, params, deadline, taskid):
31-
expires = datetime.utcnow() + timedelta(days=1)
32-
if deadline and expires < datetime.strptime(deadline, "%Y-%m-%dT%H:%M:%S.%fZ"):
31+
expires = datetime.now(timezone.utc) + timedelta(days=1)
32+
if deadline and expires.replace(tzinfo=None) < datetime.strptime(
33+
deadline, "%Y-%m-%dT%H:%M:%S.%fZ"
34+
):
3335
return False
3436
return taskid
3537

‎test/test_util_time.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
import unittest
7-
from datetime import datetime
7+
from datetime import datetime, timezone
88
from unittest.mock import patch
99

1010
from taskgraph.util.time import (
@@ -53,8 +53,13 @@ def test_json_from_now(self):
5353

5454
def test_current_json_time(self):
5555
with patch("taskgraph.util.time.datetime.datetime") as mock_datetime:
56-
mock_datetime.utcnow.return_value = datetime(2014, 1, 1)
56+
mock_datetime.now.return_value = datetime(2014, 1, 1, tzinfo=timezone.utc)
5757
mock_datetime.side_effect = datetime
5858

5959
assert current_json_time() == "2014-01-01T00:00:00.000Z"
60-
assert current_json_time(True) == datetime(2014, 1, 1)
60+
assert current_json_time(True) == datetime(2014, 1, 1, tzinfo=timezone.utc)
61+
62+
def test_json_from_now_tzinfo(self):
63+
now = datetime(2014, 1, 1, tzinfo=timezone.utc)
64+
self.assertEqual(json_time_from_now("1 years", now), "2015-01-01T00:00:00.000Z")
65+
self.assertEqual(json_time_from_now("6 days", now), "2014-01-07T00:00:00.000Z")

0 commit comments

Comments
 (0)