maturin 1.8.0__tar.gz → 1.8.2__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.8.0 → maturin-1.8.2}/.cirrus.yml +2 -19
- {maturin-1.8.0 → maturin-1.8.2}/.pre-commit-config.yaml +3 -3
- {maturin-1.8.0 → maturin-1.8.2}/Cargo.lock +288 -195
- {maturin-1.8.0 → maturin-1.8.2}/Cargo.toml +5 -5
- {maturin-1.8.0 → maturin-1.8.2}/Changelog.md +18 -1
- {maturin-1.8.0 → maturin-1.8.2}/PKG-INFO +4 -4
- {maturin-1.8.0 → maturin-1.8.2}/README.md +1 -1
- maturin-1.8.2/netlify.toml +3 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/auditwheel/manylinux-policy.json +74 -46
- {maturin-1.8.0 → maturin-1.8.2}/src/auditwheel/musllinux-policy.json +6 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/bridge.rs +32 -2
- {maturin-1.8.0 → maturin-1.8.2}/src/build_context.rs +31 -14
- {maturin-1.8.0 → maturin-1.8.2}/src/build_options.rs +62 -45
- {maturin-1.8.0 → maturin-1.8.2}/src/ci.rs +30 -30
- {maturin-1.8.0 → maturin-1.8.2}/src/compile.rs +11 -6
- {maturin-1.8.0 → maturin-1.8.2}/src/develop.rs +83 -49
- {maturin-1.8.0 → maturin-1.8.2}/src/metadata.rs +42 -34
- {maturin-1.8.0 → maturin-1.8.2}/src/module_writer.rs +53 -8
- {maturin-1.8.0 → maturin-1.8.2}/src/pyproject_toml.rs +87 -5
- {maturin-1.8.0 → maturin-1.8.2}/src/python_interpreter/mod.rs +6 -17
- {maturin-1.8.0 → maturin-1.8.2}/src/source_distribution.rs +2 -6
- {maturin-1.8.0 → maturin-1.8.2}/src/target.rs +9 -3
- {maturin-1.8.0 → maturin-1.8.2}/src/upload.rs +1 -1
- maturin-1.8.0/netlify.toml +0 -3
- {maturin-1.8.0 → maturin-1.8.2}/.codespellrc +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/.config/nextest.toml +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/.gitignore +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/MANIFEST.in +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/clippy.toml +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/license-apache +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/license-mit +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/maturin/__init__.py +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/maturin/__main__.py +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/maturin.schema.json +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/pyproject.toml +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/setup.py +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/auditwheel/audit.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/auditwheel/mod.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/auditwheel/musllinux.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/auditwheel/patchelf.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/auditwheel/platform_tag.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/auditwheel/policy.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/auditwheel/repair.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/cargo_toml.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/cross_compile.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/generate_json_schema.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/lib.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/main.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/new_project.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/project_layout.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/python_interpreter/config.rs +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/python_interpreter/get_interpreter_metadata.py +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/templates/.gitignore.j2 +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/templates/Cargo.toml.j2 +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/templates/__init__.py.j2 +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/templates/build.rs.j2 +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/templates/example.udl.j2 +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/templates/lib.rs.j2 +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/templates/main.rs.j2 +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/templates/pyproject.toml.j2 +0 -0
- {maturin-1.8.0 → maturin-1.8.2}/src/templates/test_all.py.j2 +0 -0
|
@@ -4,8 +4,8 @@ env:
|
|
|
4
4
|
CARGO_TERM_COLOR: always
|
|
5
5
|
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
|
|
6
6
|
|
|
7
|
-
build_and_test:
|
|
8
|
-
# only run tasks on pull request or github merge queue branches
|
|
7
|
+
build_and_test:
|
|
8
|
+
&BUILD_AND_TEST # only run tasks on pull request or github merge queue branches
|
|
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
|
|
@@ -31,20 +31,3 @@ freebsd_task:
|
|
|
31
31
|
- pkg install -y bash git python
|
|
32
32
|
- python3 -m ensurepip
|
|
33
33
|
<<: *BUILD_AND_TEST
|
|
34
|
-
|
|
35
|
-
linux_aarch64_task:
|
|
36
|
-
name: Test (arm64 Linux)
|
|
37
|
-
arm_container:
|
|
38
|
-
image: python:3.11
|
|
39
|
-
cpu: 4
|
|
40
|
-
memory: 4G
|
|
41
|
-
env:
|
|
42
|
-
PATH: /root/.cargo/bin:$PATH
|
|
43
|
-
target_cache:
|
|
44
|
-
folder: target
|
|
45
|
-
fingerprint_script:
|
|
46
|
-
- echo $CIRRUS_OS
|
|
47
|
-
- cat Cargo.lock
|
|
48
|
-
install_script:
|
|
49
|
-
- python3 -m pip install uniffi-bindgen==0.28.0
|
|
50
|
-
<<: *BUILD_AND_TEST
|
|
@@ -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.9.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.14.
|
|
64
|
+
rev: v1.14.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.4.1
|
|
71
71
|
hooks:
|
|
72
72
|
- id: codespell
|