chore: drop python 3.6 for cibuildwheel driver

This drops python 3.6 for cibuildwheel.
Building python 3.6 packages is still supported.
This commit is contained in:
mayeut
2022-07-19 07:47:20 +02:00
parent afb4329fe3
commit bc17f103f1
15 changed files with 34 additions and 64 deletions
+1 -3
View File
@@ -9,9 +9,7 @@ EnvironmentExecutor = Callable[[List[str], Dict[str, str]], str]
def local_environment_executor(command: List[str], env: Dict[str, str]) -> str:
return subprocess.run(
command, env=env, universal_newlines=True, stdout=subprocess.PIPE, check=True
).stdout
return subprocess.run(command, env=env, text=True, stdout=subprocess.PIPE, check=True).stdout
@dataclass(frozen=True)