reproducibly 0.0.16__tar.gz → 0.0.17__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,13 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reproducibly
3
- Version: 0.0.16
3
+ Version: 0.0.17
4
4
  Summary: Reproducibly build Python packages.
5
5
  Author-email: Keith Maxwell <keith.maxwell@gmail.com>
6
6
  Requires-Python: >=3.13
7
7
  Description-Content-Type: text/markdown
8
+ License-Expression: MPL-2.0
8
9
  Classifier: Programming Language :: Python :: 3
9
- Requires-Dist: build==1.2.2.post1
10
- Requires-Dist: cibuildwheel==3.0.1
10
+ Requires-Dist: build==1.3.0
11
+ Requires-Dist: cibuildwheel==3.2.1
11
12
  Requires-Dist: packaging==25.0
12
13
  Requires-Dist: pyproject-hooks==1.2.0
13
14
  Project-URL: Homepage, https://github.com/maxwell-k/reproducibly/
@@ -39,8 +40,13 @@ from subprocess import run
39
40
 
40
41
  import cog
41
42
 
42
- RESULT = run((".venv/bin/python", "./reproducibly.py", "--help"), text=True, check=True, capture_output=True)
43
- cog.out("\n```\n" + RESULT.stdout + "```\n\n")
43
+ CMD = ".venv/bin/python ./reproducibly.py --help"
44
+
45
+ cog.out("\n")
46
+ cog.out("```\n")
47
+ cog.out(run(CMD.split(), text=True, check=True, capture_output=True).stdout)
48
+ cog.out("```\n")
49
+ cog.out("\n")
44
50
  ]]]-->
45
51
 
46
52
  ```
@@ -24,8 +24,13 @@ from subprocess import run
24
24
 
25
25
  import cog
26
26
 
27
- RESULT = run((".venv/bin/python", "./reproducibly.py", "--help"), text=True, check=True, capture_output=True)
28
- cog.out("\n```\n" + RESULT.stdout + "```\n\n")
27
+ CMD = ".venv/bin/python ./reproducibly.py --help"
28
+
29
+ cog.out("\n")
30
+ cog.out("```\n")
31
+ cog.out(run(CMD.split(), text=True, check=True, capture_output=True).stdout)
32
+ cog.out("```\n")
33
+ cog.out("\n")
29
34
  ]]]-->
30
35
 
31
36
  ```
@@ -17,12 +17,12 @@ classifiers = [
17
17
  "Programming Language :: Python :: 3",
18
18
  ]
19
19
  dependencies = [
20
- "build==1.2.2.post1",
21
- "cibuildwheel==3.0.1",
20
+ "build==1.3.0",
21
+ "cibuildwheel==3.2.1",
22
22
  "packaging==25.0",
23
23
  "pyproject-hooks==1.2.0",
24
24
  ]
25
- licence = "MPL-2.0"
25
+ license = "MPL-2.0"
26
26
 
27
27
  [project.urls]
28
28
  Homepage = "https://github.com/maxwell-k/reproducibly/"
@@ -40,8 +40,8 @@ from pyproject_hooks import default_subprocess_runner
40
40
  # /// script
41
41
  # requires-python = ">=3.13"
42
42
  # dependencies = [
43
- # "build==1.2.2.post1",
44
- # "cibuildwheel==3.0.1",
43
+ # "build==1.3.0",
44
+ # "cibuildwheel==3.2.1",
45
45
  # "packaging==25.0",
46
46
  # "pyproject-hooks==1.2.0",
47
47
  # ]
@@ -57,7 +57,7 @@ from pyproject_hooks import default_subprocess_runner
57
57
  EARLIEST = datetime(1980, 1, 1, 0, 0, 0, tzinfo=UTC).timestamp() # 315532800.0
58
58
 
59
59
 
60
- __version__ = "0.0.16"
60
+ __version__ = "0.0.17"
61
61
 
62
62
 
63
63
  def _build(
@@ -194,7 +194,7 @@ def cleanse_sdist(path_: Path, mtime: float) -> int:
194
194
  tarinfo.uid = tarinfo.gid = 0
195
195
  tarinfo.uname = tarinfo.gname = "root"
196
196
  tarinfo.mode = tarinfo.mode & ~S_IWGRP & ~S_IWOTH
197
- tarinfo.path = tarinfo.path.removeprefix(prefix)
197
+ tarinfo.name = tarinfo.name.removeprefix(prefix)
198
198
  return tarinfo
199
199
 
200
200
  tar = f"{bare}.tar"