Skip to content

Commit df69295

Browse files
cjwatsonrbtcollins
authored andcommitted
Remove use of pytz in favour of datetime.timezone.utc
Fixes: #56
1 parent 374b265 commit df69295

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ CHANGES
1010

1111
* Drop Python 2 support. (Colin Watson)
1212

13+
* Remove use of pytz in favour of ``datetime.timezone.utc``.
14+
(Colin Watson, https://github.com/testing-cabal/testrepository/issues/56)
15+
1316
0.0.21
1417
++++++
1518

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ license-files = ["COPYING"]
3434

3535
[project.optional-dependencies]
3636
docs = ["sphinx"]
37-
test = ["pytz", "testresources", "testscenarios"]
37+
test = ["testresources", "testscenarios"]
3838

3939
[tool.hatch.version]
4040
source = "vcs"

testrepository/tests/commands/test_slowest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
from datetime import (
1818
datetime,
1919
timedelta,
20+
timezone,
2021
)
21-
import pytz
2222

2323
from testtools import PlaceHolder
2424

@@ -54,7 +54,7 @@ def insert_one_test_with_runtime(self, inserter, runtime):
5454
:return: the name of the test that was added.
5555
"""
5656
test_id = self.getUniqueString()
57-
start_time = datetime.now(pytz.UTC)
57+
start_time = datetime.now(timezone.utc)
5858
inserter.status(test_id=test_id, test_status='inprogress',
5959
timestamp=start_time)
6060
inserter.status(test_id=test_id, test_status='success',

0 commit comments

Comments
 (0)