We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce5704b commit f036b44Copy full SHA for f036b44
CHANGELOG.md
@@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning][].
8
[keep a changelog]: https://keepachangelog.com/en/1.0.0/
9
[semantic versioning]: https://semver.org/spec/v2.0.0.html
10
11
+## v0.17.2
12
+
13
+### Fixes
14
15
+- Detection of CPU count in `define_clonotype_clusters` was broken ([#527](https://github.com/scverse/scirpy/pull/527))
16
17
## v0.17.1
18
19
### Fixes
src/scirpy/util/__init__.py
@@ -598,6 +598,6 @@ def _get_usable_cpus(n_jobs: int = 0):
598
return n_jobs
599
600
try:
601
- return os.sched_getaffinity(0)
+ return len(os.sched_getaffinity(0))
602
except AttributeError:
603
return os.cpu_count()
0 commit comments