You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
68480a2387
Relax uv_build version cap from <0.10.0 to <1.0.0 for cryptography_vectors subport to work with current uv-build. Several files were installed by mistake with recent maturin versions. Remove them by fixing the pyproject file. Signed-off-by: Paul Guyot <pguyot@kallisys.net>
26 lines
699 B
Diff
26 lines
699 B
Diff
--- pyproject.toml.orig
|
|
+++ pyproject.toml
|
|
@@ -106,10 +106,10 @@
|
|
locked = true
|
|
sdist-generator = "git"
|
|
include = [
|
|
- "CHANGELOG.rst",
|
|
- "CONTRIBUTING.rst",
|
|
+ { path = "CHANGELOG.rst", format = "sdist" },
|
|
+ { path = "CONTRIBUTING.rst", format = "sdist" },
|
|
|
|
- "docs/**/*",
|
|
+ { path = "docs/**/*", format = "sdist" },
|
|
|
|
{ path = "src/_cffi_src/**/*.py", format = "sdist" },
|
|
{ path = "src/_cffi_src/**/*.c", format = "sdist" },
|
|
@@ -121,7 +121,7 @@
|
|
{ path = "src/rust/**/Cargo.lock", format = "sdist" },
|
|
{ path = "src/rust/**/*.rs", format = "sdist" },
|
|
|
|
- "tests/**/*.py",
|
|
+ { path = "tests/**/*.py", format = "sdist" },
|
|
]
|
|
exclude = [
|
|
"vectors/**/*",
|