Skip to content

Commit bde097e

Browse files
committed
Merge tag '25.1.1'
25.1.1 (October 21, 2025) Patch release to remove use of Python 3.13+ parameter.
2 parents 71ab328 + 34daef9 commit bde097e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
25.1.1 (October 21, 2025)
2+
=========================
3+
Patch release to remove use of Python 3.13+ parameter.
4+
15
25.1.0 (October 21, 2025)
26
=========================
37
New feature release in the 25.1 series.

templateflow/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ def _truncate_s3_errors(filepaths):
472472
List of file paths to check and truncate if necessary.
473473
"""
474474
for filepath in filepaths:
475-
if filepath.is_file(follow_symlinks=False) and 0 < filepath.stat().st_size < 1024:
475+
if filepath.is_file() and 0 < filepath.stat().st_size < 1024:
476476
with open(filepath, 'rb') as f:
477477
content = f.read(100)
478478
if content.startswith(b'<?xml') and b'<Error><Code>' in content:

0 commit comments

Comments
 (0)