Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ License detection:




v31.1.1 - 2022-09-02
----------------------------------

This is a minor release with a bug fix.

- Do not display tracing/debug outputs at runtime



v31.1.0 - 2022-08-29
----------------------------------

Expand Down
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import pytest

TRACE = True
TRACE = False

"""
A pytest conftest.py for scancode-toolkit to control which tests to run and when.
Expand Down
2 changes: 1 addition & 1 deletion setup-mini.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = scancode-toolkit-mini
version = 31.1.0
version = 31.1.1
license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft

# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = scancode-toolkit
version = 31.1.0
version = 31.1.1
license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft

# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Expand Down
2 changes: 1 addition & 1 deletion src/packagedcode/win_reg.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# TODO: check for chocolatey
# TODO: Windows appstore

TRACE = True
TRACE = False


def logger_debug(*args):
Expand Down
1 change: 0 additions & 1 deletion src/textcode/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@ def js_map_sources_lines(location):
entry = replace_verbatim_cr_lf_chars(entry)
for line in entry.splitlines():
l = remove_verbatim_cr_lf_tab_chars(line)
print(repr(l), l)
yield l


Expand Down