File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change
1
+ Fixed a datetime conversion error by excluding pytz 2025.1.
Original file line number Diff line number Diff line change @@ -185,4 +185,5 @@ pywinpty>=2.0.14; os_name == "nt" and python_version >= '3.13'
185
185
# because development packages pull it in, so the exclusion of 2024.2 is active
186
186
# for development as well.
187
187
# pytz 2024.2 introduced an issue that causes our tests to fail.
188
- pytz>=2019.1,!=2024.2
188
+ # pytz 2025.1 introduced an issue that causes our tests to fail (https://github.com/stub42/pytz/issues/133)
189
+ pytz>=2019.1,!=2024.2,!=2025.1
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ decorator>=4.0.11
10
10
11
11
# pytz 2019.1 fixes an ImportError for collections.Mapping on Python 3.10
12
12
# pytz 2024.2 introduced an issue that causes our tests to fail.
13
- pytz >= 2019.1 ,!= 2024.2
13
+ # pytz 2025.1 introduced an issue that causes our tests to fail (https://github.com/stub42/pytz/issues/133)
14
+ pytz >= 2019.1 ,!= 2024.2 ,!= 2025.1
14
15
15
16
# requests 2.25.0 tolerates urllib3 1.26.5 which is needed on Python 3.10 to
16
17
# remove ImportWarning in six
You can’t perform that action at this time.
0 commit comments