File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,6 +32,16 @@ License detection:
3232
3333
3434
35+
36+ v31.1.1 - 2022-09-02
37+ ----------------------------------
38+
39+ This is a minor release with a bug fix.
40+
41+ - Do not display tracing/debug outputs at runtime
42+
43+
44+
3545v31.1.0 - 2022-08-29
3646----------------------------------
3747
Original file line number Diff line number Diff line change 2020
2121import pytest
2222
23- TRACE = True
23+ TRACE = False
2424
2525"""
2626A pytest conftest.py for scancode-toolkit to control which tests to run and when.
Original file line number Diff line number Diff line change 11[metadata]
22name = scancode-toolkit-mini
3- version = 31.1.0
3+ version = 31.1.1
44license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft
55
66# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Original file line number Diff line number Diff line change 11[metadata]
22name = scancode-toolkit
3- version = 31.1.0
3+ version = 31.1.1
44license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft
55
66# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Original file line number Diff line number Diff line change 2828# TODO: check for chocolatey
2929# TODO: Windows appstore
3030
31- TRACE = True
31+ TRACE = False
3232
3333
3434def logger_debug (* args ):
Original file line number Diff line number Diff line change @@ -239,7 +239,6 @@ def js_map_sources_lines(location):
239239 entry = replace_verbatim_cr_lf_chars (entry )
240240 for line in entry .splitlines ():
241241 l = remove_verbatim_cr_lf_tab_chars (line )
242- print (repr (l ), l )
243242 yield l
244243
245244
You can’t perform that action at this time.
0 commit comments