This commit is contained in:
ed 2022-08-15 20:25:31 +02:00
parent d48a7d2398
commit 7000123a8b
2 changed files with 2 additions and 2 deletions

View File

@ -335,7 +335,7 @@ def run_argparse(argv: list[str], formatter: Any, retry: bool) -> argparse.Names
except: except:
fk_salt = "hunter2" fk_salt = "hunter2"
cores = os.cpu_count() if hasattr(os, "cpu_count") else 4 cores = (os.cpu_count() if hasattr(os, "cpu_count") else 0) or 4
hcores = min(cores, 3) # 4% faster than 4+ on py3.9 @ r5-4500U hcores = min(cores, 3) # 4% faster than 4+ on py3.9 @ r5-4500U
sects = [ sects = [

View File

@ -1,6 +1,6 @@
# coding: utf-8 # coding: utf-8
VERSION = (1, 3, 13) VERSION = (1, 3, 14)
CODENAME = "god dag" CODENAME = "god dag"
BUILD_DT = (2022, 8, 15) BUILD_DT = (2022, 8, 15)