Skip to content
Snippets Groups Projects

Feature/minimum python version 3.9

Merged Pascal Palenda requested to merge feature/python-version into feature/pure-python
14 files
+ 114
191
Compare changes
  • Side-by-side
  • Inline
Files
14
+ 1
3
@@ -25,9 +25,7 @@ class CustomBuildHook(BuildHookInterface):
from subprocess import check_output
branch = (
check_output([installed_git, "rev-parse", "--abbrev-ref", "HEAD"], cwd=src_dir) # noqa: S603
.decode("utf-8")
.strip()
check_output([installed_git, "rev-parse", "--abbrev-ref", "HEAD"], cwd=src_dir).decode("utf-8").strip()
)
if branch not in ["master", "develop"]:
Loading