PyArchiveFile 0.24.4__tar.gz → 0.24.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/PKG-INFO +1 -1
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/PyArchiveFile.egg-info/PKG-INFO +1 -1
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/archivefile.py +1 -1
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/pyarchivefile.py +3 -3
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/pyproject.toml +1 -1
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/LICENSE +0 -0
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/PyArchiveFile.egg-info/SOURCES.txt +0 -0
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/PyArchiveFile.egg-info/dependency_links.txt +0 -0
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/PyArchiveFile.egg-info/top_level.txt +0 -0
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/PyArchiveFile.egg-info/zip-safe +0 -0
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/README.md +0 -0
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/archiveneofile.py +0 -0
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/neoarchivefile.py +0 -0
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/setup.cfg +0 -0
- {pyarchivefile-0.24.4 → pyarchivefile-0.24.6}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyArchiveFile
|
|
3
|
-
Version: 0.24.
|
|
3
|
+
Version: 0.24.6
|
|
4
4
|
Summary: A tar like file format name archivefile.
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyArchiveFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyArchiveFile/archive/master.tar.gz
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyArchiveFile
|
|
3
|
-
Version: 0.24.
|
|
3
|
+
Version: 0.24.6
|
|
4
4
|
Summary: A tar like file format name archivefile.
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyArchiveFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyArchiveFile/archive/master.tar.gz
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
|
|
15
15
|
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
|
|
16
16
|
|
|
17
|
-
$FileInfo: archivefile.py - Last Update: 11/3/2025 Ver. 0.24.
|
|
17
|
+
$FileInfo: archivefile.py - Last Update: 11/3/2025 Ver. 0.24.6 RC 1 - Author: cooldude2k $
|
|
18
18
|
'''
|
|
19
19
|
|
|
20
20
|
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
|
|
15
15
|
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
|
|
16
16
|
|
|
17
|
-
$FileInfo: pyarchivefile.py - Last Update: 11/3/2025 Ver. 0.24.
|
|
17
|
+
$FileInfo: pyarchivefile.py - Last Update: 11/3/2025 Ver. 0.24.6 RC 1 - Author: cooldude2k $
|
|
18
18
|
'''
|
|
19
19
|
|
|
20
20
|
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
|
|
@@ -634,12 +634,12 @@ __project__ = __program_name__
|
|
|
634
634
|
__program_alt_name__ = __program_name__
|
|
635
635
|
__project_url__ = "https://github.com/GameMaker2k/PyArchiveFile"
|
|
636
636
|
__project_release_url__ = __project_url__+"/releases/latest"
|
|
637
|
-
__version_info__ = (0, 24,
|
|
637
|
+
__version_info__ = (0, 24, 6, "RC 1", 1)
|
|
638
638
|
__version_date_info__ = (2025, 11, 3, "RC 1", 1)
|
|
639
639
|
__version_date__ = str(__version_date_info__[0]) + "." + str(
|
|
640
640
|
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
|
|
641
641
|
__revision__ = __version_info__[3]
|
|
642
|
-
__revision_id__ = "$Id:
|
|
642
|
+
__revision_id__ = "$Id: 45d7adad4e0436f23599e18a9fb332d3724fa26d $"
|
|
643
643
|
if(__version_info__[4] is not None):
|
|
644
644
|
__version_date_plusrc__ = __version_date__ + \
|
|
645
645
|
"-" + str(__version_date_info__[4])
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|