python-msilib 0.4.3__tar.gz → 0.5.0__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.
- {python_msilib-0.4.3/src/python_msilib.egg-info → python_msilib-0.5.0}/PKG-INFO +3 -3
- {python_msilib-0.4.3 → python_msilib-0.5.0}/pyproject.toml +3 -3
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/msilib/__init__.py +1 -1
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/msilib/_msi.c +2 -2
- {python_msilib-0.4.3 → python_msilib-0.5.0/src/python_msilib.egg-info}/PKG-INFO +3 -3
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/python_msilib.egg-info/requires.txt +2 -2
- {python_msilib-0.4.3 → python_msilib-0.5.0}/LICENSE +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/MANIFEST.in +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/Makefile +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/README.md +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/setup.cfg +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/msilib/include/_msi.h +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/msilib/include/pythoncapi_compat.h +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/msilib/schema.py +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/msilib/sequence.py +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/msilib/text.py +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/python_msilib.egg-info/SOURCES.txt +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/python_msilib.egg-info/dependency_links.txt +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/python_msilib.egg-info/not-zip-safe +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/src/python_msilib.egg-info/top_level.txt +0 -0
- {python_msilib-0.4.3 → python_msilib-0.5.0}/tests/test_msilib.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-msilib
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Read and write Microsoft Installer files
|
|
5
5
|
Author-email: Marcelo Duarte <marcelotduarte@users.noreply.github.com>, " Martin v. Löwis" <loewis@users.noreply.github.com>
|
|
6
6
|
License-Expression: PSF-2.0
|
|
@@ -29,10 +29,10 @@ License-File: LICENSE
|
|
|
29
29
|
Provides-Extra: dev
|
|
30
30
|
Requires-Dist: bump-my-version==1.2.4; extra == "dev"
|
|
31
31
|
Requires-Dist: cibuildwheel==3.3.0; extra == "dev"
|
|
32
|
-
Requires-Dist: pre-commit==4.
|
|
32
|
+
Requires-Dist: pre-commit==4.5.0; extra == "dev"
|
|
33
33
|
Provides-Extra: tests
|
|
34
34
|
Requires-Dist: coverage==7.12.0; extra == "tests"
|
|
35
|
-
Requires-Dist: pytest==9.0.
|
|
35
|
+
Requires-Dist: pytest==9.0.2; extra == "tests"
|
|
36
36
|
Dynamic: license-file
|
|
37
37
|
|
|
38
38
|
# python-msilib
|
|
@@ -45,11 +45,11 @@ email = "loewis@users.noreply.github.com"
|
|
|
45
45
|
dev = [
|
|
46
46
|
"bump-my-version==1.2.4",
|
|
47
47
|
"cibuildwheel==3.3.0",
|
|
48
|
-
"pre-commit==4.
|
|
48
|
+
"pre-commit==4.5.0",
|
|
49
49
|
]
|
|
50
50
|
tests = [
|
|
51
51
|
"coverage==7.12.0",
|
|
52
|
-
"pytest==9.0.
|
|
52
|
+
"pytest==9.0.2",
|
|
53
53
|
]
|
|
54
54
|
|
|
55
55
|
[project.urls]
|
|
@@ -80,7 +80,7 @@ where = ["src"]
|
|
|
80
80
|
|
|
81
81
|
[tool.bumpversion]
|
|
82
82
|
commit = true
|
|
83
|
-
current_version = "0.
|
|
83
|
+
current_version = "0.5.0"
|
|
84
84
|
message = "Bump version: {current_version} → {new_version} [ci skip]"
|
|
85
85
|
parse = """(?x)
|
|
86
86
|
(?P<major>0|[1-9]\\d*)\\.
|
|
@@ -260,7 +260,7 @@ static PyObject* _msi_FCICreate_impl(
|
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
ccab.cb = INT_MAX; /* no need to split CAB into multiple media */
|
|
263
|
-
ccab.cbFolderThresh =
|
|
263
|
+
ccab.cbFolderThresh = 10000000; /* flush directory after this many bytes */
|
|
264
264
|
ccab.cbReserveCFData = 0;
|
|
265
265
|
ccab.cbReserveCFFolder = 0;
|
|
266
266
|
ccab.cbReserveCFHeader = 0;
|
|
@@ -310,7 +310,7 @@ static PyObject* _msi_FCICreate_impl(
|
|
|
310
310
|
}
|
|
311
311
|
|
|
312
312
|
if (!FCIAddFile(hfci, filename, cabname, FALSE, cb_getnextcabinet,
|
|
313
|
-
cb_status, cb_getopeninfo,
|
|
313
|
+
cb_status, cb_getopeninfo, TCOMPfromLZXWindow(21)))
|
|
314
314
|
goto err;
|
|
315
315
|
}
|
|
316
316
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-msilib
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Read and write Microsoft Installer files
|
|
5
5
|
Author-email: Marcelo Duarte <marcelotduarte@users.noreply.github.com>, " Martin v. Löwis" <loewis@users.noreply.github.com>
|
|
6
6
|
License-Expression: PSF-2.0
|
|
@@ -29,10 +29,10 @@ License-File: LICENSE
|
|
|
29
29
|
Provides-Extra: dev
|
|
30
30
|
Requires-Dist: bump-my-version==1.2.4; extra == "dev"
|
|
31
31
|
Requires-Dist: cibuildwheel==3.3.0; extra == "dev"
|
|
32
|
-
Requires-Dist: pre-commit==4.
|
|
32
|
+
Requires-Dist: pre-commit==4.5.0; extra == "dev"
|
|
33
33
|
Provides-Extra: tests
|
|
34
34
|
Requires-Dist: coverage==7.12.0; extra == "tests"
|
|
35
|
-
Requires-Dist: pytest==9.0.
|
|
35
|
+
Requires-Dist: pytest==9.0.2; extra == "tests"
|
|
36
36
|
Dynamic: license-file
|
|
37
37
|
|
|
38
38
|
# python-msilib
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|