maturin 1.7.8__tar.gz → 1.8.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.7.8 → maturin-1.8.0}/.cirrus.yml +1 -1
- {maturin-1.7.8 → maturin-1.8.0}/.pre-commit-config.yaml +2 -2
- {maturin-1.7.8 → maturin-1.8.0}/Cargo.lock +306 -109
- {maturin-1.7.8 → maturin-1.8.0}/Cargo.toml +6 -6
- {maturin-1.7.8 → maturin-1.8.0}/Changelog.md +18 -1
- {maturin-1.7.8 → maturin-1.8.0}/PKG-INFO +3 -48
- {maturin-1.7.8 → maturin-1.8.0}/README.md +2 -47
- {maturin-1.7.8 → maturin-1.8.0}/src/auditwheel/patchelf.rs +4 -4
- {maturin-1.7.8 → maturin-1.8.0}/src/bridge.rs +35 -3
- {maturin-1.7.8 → maturin-1.8.0}/src/build_context.rs +33 -29
- {maturin-1.7.8 → maturin-1.8.0}/src/build_options.rs +25 -14
- {maturin-1.7.8 → maturin-1.8.0}/src/ci.rs +26 -4
- {maturin-1.7.8 → maturin-1.8.0}/src/compile.rs +16 -15
- {maturin-1.7.8 → maturin-1.8.0}/src/develop.rs +59 -11
- {maturin-1.7.8 → maturin-1.8.0}/src/lib.rs +1 -1
- {maturin-1.7.8 → maturin-1.8.0}/src/main.rs +3 -3
- {maturin-1.7.8 → maturin-1.8.0}/src/metadata.rs +32 -19
- {maturin-1.7.8 → maturin-1.8.0}/src/module_writer.rs +42 -42
- {maturin-1.7.8 → maturin-1.8.0}/src/project_layout.rs +5 -5
- {maturin-1.7.8 → maturin-1.8.0}/src/python_interpreter/mod.rs +38 -3
- {maturin-1.7.8 → maturin-1.8.0}/src/source_distribution.rs +6 -7
- {maturin-1.7.8 → maturin-1.8.0}/src/target.rs +26 -8
- {maturin-1.7.8 → maturin-1.8.0}/src/templates/Cargo.toml.j2 +1 -1
- {maturin-1.7.8 → maturin-1.8.0}/.codespellrc +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/.config/nextest.toml +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/.gitignore +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/MANIFEST.in +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/clippy.toml +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/license-apache +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/license-mit +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/maturin/__init__.py +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/maturin/__main__.py +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/maturin.schema.json +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/netlify.toml +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/pyproject.toml +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/setup.py +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/auditwheel/audit.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/auditwheel/manylinux-policy.json +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/auditwheel/mod.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/auditwheel/musllinux-policy.json +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/auditwheel/musllinux.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/auditwheel/platform_tag.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/auditwheel/policy.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/auditwheel/repair.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/cargo_toml.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/cross_compile.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/generate_json_schema.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/new_project.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/pyproject_toml.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/python_interpreter/config.rs +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/python_interpreter/get_interpreter_metadata.py +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/templates/.gitignore.j2 +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/templates/__init__.py.j2 +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/templates/build.rs.j2 +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/templates/example.udl.j2 +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/templates/lib.rs.j2 +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/templates/main.rs.j2 +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/templates/pyproject.toml.j2 +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/templates/test_all.py.j2 +0 -0
- {maturin-1.7.8 → maturin-1.8.0}/src/upload.rs +0 -0
|
@@ -9,7 +9,7 @@ build_and_test: &BUILD_AND_TEST
|
|
|
9
9
|
only_if: $CIRRUS_BRANCH =~ 'gh-readonly-queue/.*' || $CIRRUS_PR != ""
|
|
10
10
|
setup_script:
|
|
11
11
|
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
|
|
12
|
-
- rustup target add wasm32-
|
|
12
|
+
- rustup target add wasm32-wasip1
|
|
13
13
|
- python3 -m pip install --upgrade cffi virtualenv
|
|
14
14
|
build_script:
|
|
15
15
|
- cargo build
|
|
@@ -56,12 +56,12 @@ repos:
|
|
|
56
56
|
)
|
|
57
57
|
- id: mixed-line-ending
|
|
58
58
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
59
|
-
rev: v0.8.
|
|
59
|
+
rev: v0.8.4
|
|
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.14.0
|
|
65
65
|
hooks:
|
|
66
66
|
- id: mypy
|
|
67
67
|
entry: mypy maturin/
|