Skip to content

Commit 5027d17

Browse files
Address feedback from reviews
Signed-off-by: Ayan Sinha Mahapatra <ayansmahapatra@gmail.com>
1 parent b6ed4c1 commit 5027d17

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ v35.1.0 (unreleased)
1616
license rules used during the scan.
1717
https://github.com/aboutcode-org/scancode.io/issues/1657
1818

19+
- Update scancode-toolkit to v32.4.0. See CHANGELOG for updates:
20+
https://github.com/aboutcode-org/scancode-toolkit/releases/tag/v32.4.0
21+
Adds a new ``git_sha1`` attribute to the ``CodebaseResource`` model as this
22+
is now computed and returned from the ``scancode-toolkit`` ``--info`` plugin.
23+
https://github.com/aboutcode-org/scancode.io/pull/1708
24+
1925
v35.0.0 (2025-06-23)
2026
--------------------
2127

scanpipe/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2752,7 +2752,7 @@ class Type(models.TextChoices):
27522752
_("SHA1_git"),
27532753
max_length=40,
27542754
blank=True,
2755-
help_text=_("SHA1 git checksum hex-encoded, as in git genreated checksum."),
2755+
help_text=_("git checksum, as in git generated SHA1 checksum, hex-encoded."),
27562756
)
27572757
package_data = models.JSONField(
27582758
default=list,

scanpipe/pipes/scancode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ def run_scan(location, output_file, run_scan_args):
767767
"""Scan the `location` content and write the results into an `output_file`."""
768768
_success, results = scancode_run_scan(
769769
input=shlex.quote(location),
770-
processes=get_max_workers(keep_available=2),
770+
processes=get_max_workers(keep_available=1),
771771
quiet=True,
772772
verbose=False,
773773
return_results=True,

0 commit comments

Comments
 (0)