maturin 1.5.1__tar.gz → 1.7.0__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.
Potentially problematic release.
This version of maturin might be problematic. Click here for more details.
- {maturin-1.5.1 → maturin-1.7.0}/.cirrus.yml +1 -1
- {maturin-1.5.1 → maturin-1.7.0}/.codespellrc +1 -1
- {maturin-1.5.1 → maturin-1.7.0}/.gitignore +1 -0
- {maturin-1.5.1 → maturin-1.7.0}/.pre-commit-config.yaml +4 -4
- {maturin-1.5.1 → maturin-1.7.0}/Cargo.lock +692 -348
- {maturin-1.5.1 → maturin-1.7.0}/Cargo.toml +23 -14
- {maturin-1.5.1 → maturin-1.7.0}/Changelog.md +23 -1
- {maturin-1.5.1 → maturin-1.7.0}/PKG-INFO +35 -35
- {maturin-1.5.1 → maturin-1.7.0}/README.md +32 -32
- maturin-1.7.0/clippy.toml +29 -0
- {maturin-1.5.1 → maturin-1.7.0}/maturin/__init__.py +13 -2
- {maturin-1.5.1 → maturin-1.7.0}/maturin/__main__.py +7 -1
- maturin-1.7.0/maturin.schema.json +394 -0
- {maturin-1.5.1 → maturin-1.7.0}/pyproject.toml +1 -1
- {maturin-1.5.1 → maturin-1.7.0}/setup.py +1 -1
- {maturin-1.5.1 → maturin-1.7.0}/src/auditwheel/platform_tag.rs +1 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/build_context.rs +6 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/build_options.rs +16 -12
- {maturin-1.5.1 → maturin-1.7.0}/src/ci.rs +327 -79
- {maturin-1.5.1 → maturin-1.7.0}/src/compile.rs +3 -2
- {maturin-1.5.1 → maturin-1.7.0}/src/cross_compile.rs +3 -10
- {maturin-1.5.1 → maturin-1.7.0}/src/develop.rs +128 -54
- maturin-1.7.0/src/generate_json_schema.rs +64 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/lib.rs +3 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/main.rs +78 -21
- {maturin-1.5.1 → maturin-1.7.0}/src/metadata.rs +8 -8
- {maturin-1.5.1 → maturin-1.7.0}/src/module_writer.rs +140 -40
- {maturin-1.5.1 → maturin-1.7.0}/src/new_project.rs +17 -6
- {maturin-1.5.1 → maturin-1.7.0}/src/project_layout.rs +2 -1
- {maturin-1.5.1 → maturin-1.7.0}/src/pyproject_toml.rs +18 -6
- {maturin-1.5.1 → maturin-1.7.0}/src/python_interpreter/mod.rs +2 -1
- {maturin-1.5.1 → maturin-1.7.0}/src/source_distribution.rs +16 -9
- {maturin-1.5.1 → maturin-1.7.0}/src/target.rs +36 -2
- {maturin-1.5.1 → maturin-1.7.0}/src/templates/Cargo.toml.j2 +3 -5
- {maturin-1.5.1 → maturin-1.7.0}/src/templates/lib.rs.j2 +1 -8
- {maturin-1.5.1 → maturin-1.7.0}/src/templates/pyproject.toml.j2 +1 -3
- maturin-1.5.1/clippy.toml +0 -1
- maturin-1.5.1/maturin/import_hook.py +0 -169
- {maturin-1.5.1 → maturin-1.7.0}/.config/nextest.toml +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/MANIFEST.in +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/license-apache +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/license-mit +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/netlify.toml +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/auditwheel/audit.rs +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/auditwheel/manylinux-policy.json +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/auditwheel/mod.rs +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/auditwheel/musllinux-policy.json +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/auditwheel/musllinux.rs +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/auditwheel/patchelf.rs +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/auditwheel/policy.rs +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/auditwheel/repair.rs +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/cargo_toml.rs +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/python_interpreter/config.rs +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/python_interpreter/get_interpreter_metadata.py +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/templates/.gitignore.j2 +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/templates/__init__.py.j2 +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/templates/build.rs.j2 +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/templates/example.udl.j2 +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/templates/main.rs.j2 +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/templates/test_all.py.j2 +0 -0
- {maturin-1.5.1 → maturin-1.7.0}/src/upload.rs +0 -0
|
@@ -38,7 +38,7 @@ repos:
|
|
|
38
38
|
types: [rust]
|
|
39
39
|
stages: [manual] # because it's slow
|
|
40
40
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
41
|
-
rev: v4.
|
|
41
|
+
rev: v4.6.0
|
|
42
42
|
hooks:
|
|
43
43
|
- id: check-yaml
|
|
44
44
|
- id: check-toml
|
|
@@ -56,17 +56,17 @@ repos:
|
|
|
56
56
|
)
|
|
57
57
|
- id: mixed-line-ending
|
|
58
58
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
59
|
-
rev: v0.
|
|
59
|
+
rev: v0.5.0
|
|
60
60
|
hooks:
|
|
61
61
|
- id: ruff-format
|
|
62
62
|
- id: ruff
|
|
63
63
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
64
|
-
rev: v1.
|
|
64
|
+
rev: v1.10.1
|
|
65
65
|
hooks:
|
|
66
66
|
- id: mypy
|
|
67
67
|
entry: mypy maturin/
|
|
68
68
|
pass_filenames: false
|
|
69
69
|
- repo: https://github.com/codespell-project/codespell
|
|
70
|
-
rev: v2.
|
|
70
|
+
rev: v2.3.0
|
|
71
71
|
hooks:
|
|
72
72
|
- id: codespell
|