Skip to content

Commit

Permalink
v1.3.14
Browse files Browse the repository at this point in the history
  • Loading branch information
9001 committed Aug 15, 2022
1 parent d48a7d2 commit 7000123
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion copyparty/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def run_argparse(argv: list[str], formatter: Any, retry: bool) -> argparse.Names
except:
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

sects = [
Expand Down
2 changes: 1 addition & 1 deletion copyparty/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# coding: utf-8

VERSION = (1, 3, 13)
VERSION = (1, 3, 14)
CODENAME = "god dag"
BUILD_DT = (2022, 8, 15)

Expand Down

0 comments on commit 7000123

Please sign in to comment.