We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 71ab328 + 34daef9 commit bde097eCopy full SHA for bde097e
2 files changed
CHANGES.rst
@@ -1,3 +1,7 @@
1
+25.1.1 (October 21, 2025)
2
+=========================
3
+Patch release to remove use of Python 3.13+ parameter.
4
+
5
25.1.0 (October 21, 2025)
6
=========================
7
New feature release in the 25.1 series.
templateflow/client.py
@@ -472,7 +472,7 @@ def _truncate_s3_errors(filepaths):
472
List of file paths to check and truncate if necessary.
473
"""
474
for filepath in filepaths:
475
- if filepath.is_file(follow_symlinks=False) and 0 < filepath.stat().st_size < 1024:
+ if filepath.is_file() and 0 < filepath.stat().st_size < 1024:
476
with open(filepath, 'rb') as f:
477
content = f.read(100)
478
if content.startswith(b'<?xml') and b'<Error><Code>' in content:
0 commit comments