Skip to content

Commit c8f3372

Browse files
author
Kazuki Suzuki Przyborowski
committed
Ver Up Fix
1 parent 46ec25f commit c8f3372

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pyarchivefile.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
1515
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1616
17-
$FileInfo: pyarchivefile.py - Last Update: 8/14/2025 Ver. 0.19.6 RC 1 - Author: cooldude2k $
17+
$FileInfo: pyarchivefile.py - Last Update: 8/14/2025 Ver. 0.19.8 RC 1 - Author: cooldude2k $
1818
'''
1919

2020
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
@@ -339,7 +339,7 @@ def decode_unicode_escape(value):
339339
__file_format_dict__ = __file_format_multi_dict__[__file_format_default__]
340340
__project__ = __program_name__
341341
__project_url__ = "https://github.com/GameMaker2k/PyArchiveFile"
342-
__version_info__ = (0, 19, 6, "RC 1", 1)
342+
__version_info__ = (0, 19, 8, "RC 1", 1)
343343
__version_date_info__ = (2025, 8, 14, "RC 1", 1)
344344
__version_date__ = str(__version_date_info__[0]) + "." + str(
345345
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
@@ -9300,10 +9300,10 @@ def download_file_from_http_file(url, headers=None, usehttp=__use_http_lib__):
93009300
if usehttp == 'requests' and haverequests:
93019301
if username and password:
93029302
response = requests.get(
9303-
rebuilt_url, headers=headers, auth=(username, password), timeout=(5, 30)), stream=True
9303+
rebuilt_url, headers=headers, auth=(username, password), stream=True
93049304
)
93059305
else:
9306-
response = requests.get(rebuilt_url, headers=headers, timeout=(5, 30)), stream=True)
9306+
response = requests.get(rebuilt_url, headers=headers, stream=True)
93079307
response.raw.decode_content = True
93089308
shutil.copyfileobj(response.raw, httpfile)
93099309

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "PyArchiveFile"
3-
version = "0.19.6"
3+
version = "0.19.8"
44
readme = "README.md"
55
license = { text = "BSD-3-Clause" }
66
keywords = []

0 commit comments

Comments
 (0)