reproducibly 0.0.6__py3-none-any.whl → 0.0.8__py3-none-any.whl

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.6
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.17.0
12
- Requires-Dist: packaging==24.0
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
@@ -0,0 +1,5 @@
1
+ reproducibly.py,sha256=qC6agTrbHehbQHLakQDK7b_YlDKLIbMw1s5e51oHfEc,13406
2
+ reproducibly-0.0.8.dist-info/METADATA,sha256=OHcl2nc6rzn30YJhG_ocLteWCmioCJhNIvIJi9dwka0,2851
3
+ reproducibly-0.0.8.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
4
+ reproducibly-0.0.8.dist-info/entry_points.txt,sha256=J4fRzmY7XffHnoo9etzvgeph8np598MPpIy3jpnGlfk,50
5
+ reproducibly-0.0.8.dist-info/RECORD,,
reproducibly.py CHANGED
@@ -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.17.0",
59
- # "packaging==24.0",
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.6"
84
+ __version__ = "0.0.8"
85
85
 
86
86
 
87
- def _build(srcdir: Path, output: Path, distribution: str) -> Path:
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"""
@@ -1,5 +0,0 @@
1
- reproducibly.py,sha256=okWNSiivEB_ZUfIkLpE9iU6rkfElxZqL3Sk9-Zz7fsM,13359
2
- reproducibly-0.0.6.dist-info/METADATA,sha256=WutjK7Atx2qXOwrHU2wS-ZfmQw251dDA5QgPufnF0YM,2851
3
- reproducibly-0.0.6.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
4
- reproducibly-0.0.6.dist-info/entry_points.txt,sha256=J4fRzmY7XffHnoo9etzvgeph8np598MPpIy3jpnGlfk,50
5
- reproducibly-0.0.6.dist-info/RECORD,,