reproducibly 0.0.6__tar.gz → 0.0.8__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.
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: reproducibly
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.8
|
4
4
|
Summary: Reproducibly build Python packages
|
5
5
|
Author-email: Keith Maxwell <keith.maxwell@gmail.com>
|
6
6
|
Requires-Python: >=3.11
|
@@ -8,8 +8,8 @@ Description-Content-Type: text/markdown
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
9
9
|
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
10
10
|
Requires-Dist: build==1.2.1
|
11
|
-
Requires-Dist: cibuildwheel==2.
|
12
|
-
Requires-Dist: packaging==24.
|
11
|
+
Requires-Dist: cibuildwheel==2.18.1
|
12
|
+
Requires-Dist: packaging==24.1
|
13
13
|
Requires-Dist: pyproject_hooks==1.1.0
|
14
14
|
Project-URL: Homepage, https://github.com/maxwell-k/reproducibly/
|
15
15
|
Project-URL: Issues, https://github.com/maxwell-k/reproducibly/issues
|
@@ -26,7 +26,7 @@ from stat import S_IWGRP, S_IWOTH
|
|
26
26
|
from subprocess import CalledProcessError, run
|
27
27
|
from sys import version_info
|
28
28
|
from tempfile import TemporaryDirectory
|
29
|
-
from typing import cast, TypedDict
|
29
|
+
from typing import cast, Literal, TypedDict
|
30
30
|
from zipfile import ZipFile, ZipInfo
|
31
31
|
|
32
32
|
from build import ProjectBuilder
|
@@ -55,8 +55,8 @@ from pyproject_hooks import default_subprocess_runner
|
|
55
55
|
# requires-python = ">=3.11"
|
56
56
|
# dependencies = [
|
57
57
|
# "build==1.2.1",
|
58
|
-
# "cibuildwheel==2.
|
59
|
-
# "packaging==24.
|
58
|
+
# "cibuildwheel==2.18.1",
|
59
|
+
# "packaging==24.1",
|
60
60
|
# "pyproject_hooks==1.1.0",
|
61
61
|
# ]
|
62
62
|
# ///
|
@@ -81,10 +81,12 @@ CONSTRAINTS = {
|
|
81
81
|
# [[[end]]]
|
82
82
|
}
|
83
83
|
|
84
|
-
__version__ = "0.0.
|
84
|
+
__version__ = "0.0.8"
|
85
85
|
|
86
86
|
|
87
|
-
def _build(
|
87
|
+
def _build(
|
88
|
+
srcdir: Path, output: Path, distribution: Literal["wheel"] | Literal["sdist"]
|
89
|
+
) -> Path:
|
88
90
|
"""Call the build API
|
89
91
|
|
90
92
|
Returns the path to the built distribution"""
|
File without changes
|