File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 77import shutil
88import subprocess
99import sysconfig
10- from collections .abc import Iterable , Iterator
10+ from collections .abc import Iterable , Iterator , MutableMapping
1111from dataclasses import dataclass
1212from os .path import relpath
1313from pathlib import Path
1414from pprint import pprint
1515from runpy import run_path
1616from textwrap import dedent
17- from typing import Any , MutableMapping
17+ from typing import Any
1818
1919from build import ProjectBuilder
2020from build .env import IsolatedEnv
@@ -407,9 +407,7 @@ def setup_rust_cross_compile(
407407 log .notice (f"Setting CARGO_BUILD_TARGET={ cargo_target } for cross-compilation" )
408408 env ["CARGO_BUILD_TARGET" ] = cargo_target
409409 else :
410- log .warning (
411- f"Unable to configure Rust cross-compilation for architecture { cargo_target } "
412- )
410+ log .warning (f"Unable to configure Rust cross-compilation for architecture { cargo_target } " )
413411
414412
415413def before_build (state : BuildState ) -> None :
You can’t perform that action at this time.
0 commit comments