maturin 1.8.6__py3-none-win32.whl → 1.8.7__py3-none-win32.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.

Potentially problematic release.


This version of maturin might be problematic. Click here for more details.

maturin/bootstrap.py CHANGED
@@ -17,15 +17,23 @@ from typing import Any
17
17
 
18
18
  # noinspection PyUnresolvedReferences
19
19
  from setuptools.build_meta import * # noqa:F403
20
+ from setuptools.build_meta import (
21
+ get_requires_for_build_sdist as _orig_get_requires_for_build_sdist,
22
+ )
23
+ from setuptools.build_meta import (
24
+ get_requires_for_build_wheel as _orig_get_requires_for_build_wheel,
25
+ )
20
26
 
21
27
 
22
- def get_requires_for_build_wheel(_config_settings: dict[str, Any] | None = None) -> list[str]:
28
+ def get_requires_for_build_wheel(config_settings: dict[str, Any] | None = None) -> list[str]:
29
+ reqs = _orig_get_requires_for_build_wheel()
23
30
  if not os.environ.get("MATURIN_NO_INSTALL_RUST") and not shutil.which("cargo"):
24
- return ["puccinialin>=0.1,<0.2"]
25
- return []
31
+ reqs.append("puccinialin>=0.1,<0.2")
32
+ return reqs
26
33
 
27
34
 
28
- def get_requires_for_build_sdist(_config_settings: dict[str, Any] | None = None) -> list[str]:
35
+ def get_requires_for_build_sdist(config_settings: dict[str, Any] | None = None) -> list[str]:
36
+ reqs = _orig_get_requires_for_build_sdist()
29
37
  if not os.environ.get("MATURIN_NO_INSTALL_RUST") and not shutil.which("cargo"):
30
- return ["puccinialin>=0.1,<0.2"]
31
- return []
38
+ reqs.append("puccinialin>=0.1,<0.2")
39
+ return reqs
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maturin
3
- Version: 1.8.6
3
+ Version: 1.8.7
4
4
  Classifier: Topic :: Software Development :: Build Tools
5
5
  Classifier: Programming Language :: Rust
6
6
  Classifier: Programming Language :: Python :: Implementation :: CPython
@@ -0,0 +1,7 @@
1
+ maturin-1.8.7.data/scripts/maturin.exe,sha256=DgmNseAe5padE84qNVxHXxBFNzPE1kZFIgo3bYQodhQ,17086464
2
+ maturin-1.8.7.dist-info/METADATA,sha256=UmIZjIZ1AYFoKd5ug2oovtMSHt6-0hVL1wWBt3JjyaI,16828
3
+ maturin-1.8.7.dist-info/WHEEL,sha256=FArPuHHFtubKfusilx8aMueDzgUxiLHbmefWGH6YgXQ,89
4
+ maturin/__init__.py,sha256=FP-0MkZhFvau881z1-mhguZYzeE3dwzV4ByVT0Cq67U,8314
5
+ maturin/__main__.py,sha256=UxDvFV1Hhu0gW_Jvb6Kzdc78gg7zjUUiZBhWrpLi5YU,1195
6
+ maturin/bootstrap.py,sha256=gKWf9F_Nx_K1Iv0LDUGR2r-I2zHgi6KFz7bjy96ILhA,1539
7
+ maturin-1.8.7.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: maturin (1.8.6)
2
+ Generator: maturin (1.8.7)
3
3
  Root-Is-Purelib: false
4
4
  Tag: py3-none-win32
@@ -1,7 +0,0 @@
1
- maturin-1.8.6.data/scripts/maturin.exe,sha256=-5aSYUPVophmcLtIhJFPMPVxlKCdwjIExl3p2g_KDJo,16501760
2
- maturin-1.8.6.dist-info/METADATA,sha256=knK19fgOtKlbloYCc5FDj7BYJTSh_1irBs5irFFkrHw,16828
3
- maturin-1.8.6.dist-info/WHEEL,sha256=Avoj2P0zbCDE_MeJOSIo7OHux5n9FlrngDhRLa3FWRU,89
4
- maturin/__init__.py,sha256=FP-0MkZhFvau881z1-mhguZYzeE3dwzV4ByVT0Cq67U,8314
5
- maturin/__main__.py,sha256=UxDvFV1Hhu0gW_Jvb6Kzdc78gg7zjUUiZBhWrpLi5YU,1195
6
- maturin/bootstrap.py,sha256=8oqsWrJ8Rxb4bgPDmu5T_EMC5UkVgZh1jjn0ZcSGKK8,1205
7
- maturin-1.8.6.dist-info/RECORD,,