python-msilib 0.4.2__tar.gz → 0.4.3__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.2/src/python_msilib.egg-info → python_msilib-0.4.3}/PKG-INFO +6 -7
- {python_msilib-0.4.2 → python_msilib-0.4.3}/pyproject.toml +9 -8
- {python_msilib-0.4.2 → python_msilib-0.4.3}/src/msilib/__init__.py +1 -1
- {python_msilib-0.4.2 → python_msilib-0.4.3/src/python_msilib.egg-info}/PKG-INFO +6 -7
- python_msilib-0.4.3/src/python_msilib.egg-info/requires.txt +9 -0
- python_msilib-0.4.2/src/python_msilib.egg-info/requires.txt +0 -9
- {python_msilib-0.4.2 → python_msilib-0.4.3}/LICENSE +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/MANIFEST.in +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/Makefile +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/README.md +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/setup.cfg +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/src/msilib/_msi.c +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/src/msilib/include/_msi.h +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/src/msilib/include/pythoncapi_compat.h +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/src/msilib/schema.py +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/src/msilib/sequence.py +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/src/msilib/text.py +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/src/python_msilib.egg-info/SOURCES.txt +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/src/python_msilib.egg-info/dependency_links.txt +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/src/python_msilib.egg-info/not-zip-safe +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/src/python_msilib.egg-info/top_level.txt +0 -0
- {python_msilib-0.4.2 → python_msilib-0.4.3}/tests/test_msilib.py +0 -0
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-msilib
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: Read and write Microsoft Installer files
|
|
5
|
-
Author:
|
|
6
|
-
Author-email: Marcelo Duarte <marcelotduarte@users.noreply.github.com>
|
|
5
|
+
Author-email: Marcelo Duarte <marcelotduarte@users.noreply.github.com>, " Martin v. Löwis" <loewis@users.noreply.github.com>
|
|
7
6
|
License-Expression: PSF-2.0
|
|
8
7
|
Project-URL: Source, https://github.com/marcelotduarte/python-msilib
|
|
9
8
|
Project-URL: Changelog, https://github.com/marcelotduarte/python-msilib/releases
|
|
@@ -28,12 +27,12 @@ Requires-Python: >=3.13
|
|
|
28
27
|
Description-Content-Type: text/markdown
|
|
29
28
|
License-File: LICENSE
|
|
30
29
|
Provides-Extra: dev
|
|
31
|
-
Requires-Dist: bump-my-version==1.2.
|
|
32
|
-
Requires-Dist: cibuildwheel==3.
|
|
30
|
+
Requires-Dist: bump-my-version==1.2.4; extra == "dev"
|
|
31
|
+
Requires-Dist: cibuildwheel==3.3.0; extra == "dev"
|
|
33
32
|
Requires-Dist: pre-commit==4.4.0; extra == "dev"
|
|
34
33
|
Provides-Extra: tests
|
|
35
|
-
Requires-Dist: coverage==7.
|
|
36
|
-
Requires-Dist: pytest==9.0.
|
|
34
|
+
Requires-Dist: coverage==7.12.0; extra == "tests"
|
|
35
|
+
Requires-Dist: pytest==9.0.1; extra == "tests"
|
|
37
36
|
Dynamic: license-file
|
|
38
37
|
|
|
39
38
|
# python-msilib
|
|
@@ -39,16 +39,17 @@ email = "marcelotduarte@users.noreply.github.com"
|
|
|
39
39
|
|
|
40
40
|
[[project.authors]]
|
|
41
41
|
name = " Martin v. Löwis"
|
|
42
|
+
email = "loewis@users.noreply.github.com"
|
|
42
43
|
|
|
43
44
|
[project.optional-dependencies]
|
|
44
45
|
dev = [
|
|
45
|
-
"bump-my-version==1.2.
|
|
46
|
-
"cibuildwheel==3.
|
|
46
|
+
"bump-my-version==1.2.4",
|
|
47
|
+
"cibuildwheel==3.3.0",
|
|
47
48
|
"pre-commit==4.4.0",
|
|
48
49
|
]
|
|
49
50
|
tests = [
|
|
50
|
-
"coverage==7.
|
|
51
|
-
"pytest==9.0.
|
|
51
|
+
"coverage==7.12.0",
|
|
52
|
+
"pytest==9.0.1",
|
|
52
53
|
]
|
|
53
54
|
|
|
54
55
|
[project.urls]
|
|
@@ -79,7 +80,7 @@ where = ["src"]
|
|
|
79
80
|
|
|
80
81
|
[tool.bumpversion]
|
|
81
82
|
commit = true
|
|
82
|
-
current_version = "0.4.
|
|
83
|
+
current_version = "0.4.3"
|
|
83
84
|
message = "Bump version: {current_version} → {new_version} [ci skip]"
|
|
84
85
|
parse = """(?x)
|
|
85
86
|
(?P<major>0|[1-9]\\d*)\\.
|
|
@@ -147,9 +148,9 @@ source = ["msilib"]
|
|
|
147
148
|
parallel = true
|
|
148
149
|
relative_files = true
|
|
149
150
|
|
|
150
|
-
[tool.pytest
|
|
151
|
-
minversion = "
|
|
152
|
-
addopts = "-rpfEsXx"
|
|
151
|
+
[tool.pytest]
|
|
152
|
+
minversion = "9.0"
|
|
153
|
+
addopts = ["-rpfEsXx"]
|
|
153
154
|
testpaths = ["tests"]
|
|
154
155
|
filterwarnings = [
|
|
155
156
|
"ignore::DeprecationWarning:distutils.*",
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-msilib
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: Read and write Microsoft Installer files
|
|
5
|
-
Author:
|
|
6
|
-
Author-email: Marcelo Duarte <marcelotduarte@users.noreply.github.com>
|
|
5
|
+
Author-email: Marcelo Duarte <marcelotduarte@users.noreply.github.com>, " Martin v. Löwis" <loewis@users.noreply.github.com>
|
|
7
6
|
License-Expression: PSF-2.0
|
|
8
7
|
Project-URL: Source, https://github.com/marcelotduarte/python-msilib
|
|
9
8
|
Project-URL: Changelog, https://github.com/marcelotduarte/python-msilib/releases
|
|
@@ -28,12 +27,12 @@ Requires-Python: >=3.13
|
|
|
28
27
|
Description-Content-Type: text/markdown
|
|
29
28
|
License-File: LICENSE
|
|
30
29
|
Provides-Extra: dev
|
|
31
|
-
Requires-Dist: bump-my-version==1.2.
|
|
32
|
-
Requires-Dist: cibuildwheel==3.
|
|
30
|
+
Requires-Dist: bump-my-version==1.2.4; extra == "dev"
|
|
31
|
+
Requires-Dist: cibuildwheel==3.3.0; extra == "dev"
|
|
33
32
|
Requires-Dist: pre-commit==4.4.0; extra == "dev"
|
|
34
33
|
Provides-Extra: tests
|
|
35
|
-
Requires-Dist: coverage==7.
|
|
36
|
-
Requires-Dist: pytest==9.0.
|
|
34
|
+
Requires-Dist: coverage==7.12.0; extra == "tests"
|
|
35
|
+
Requires-Dist: pytest==9.0.1; extra == "tests"
|
|
37
36
|
Dynamic: license-file
|
|
38
37
|
|
|
39
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
|
|
File without changes
|