Skip to content
Open
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
3 changes: 3 additions & 0 deletions tools/openchain_telco_sbom_validator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
A script to validate SBOMs against
the [OpenChain Telco SBOM Guide](https://github.com/OpenChain-Project/Telco-WG/blob/main/OpenChain-Telco-SBOM-Guide_EN.md).

What is new in version 0.3.4:
* require spdx-tools >= 0.8.5

What is new in version 0.3.3:
* fixed a bug when the CISA SBOM type was followed by another line of text in the comment.

Expand Down
6 changes: 3 additions & 3 deletions tools/openchain_telco_sbom_validator/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
spdx-tools>=0.8.3
spdx-tools>=0.8.5
requests>=2.32.4
prettytable>=3.16.0
packageurl-python>=0.17.1
ntia-conformance-checker>=3.2.0
packageurl-python>=0.17.6
ntia-conformance-checker>=4.0.0
validators>=0.35.0
11 changes: 6 additions & 5 deletions tools/openchain_telco_sbom_validator/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = openchain-telco-sbom-validator
version = 0.3.3
version = 0.3.4
author = Gergely Csatari, Marc-Etienne Vargenau
author_email = gergely.csatari@nokia.com, marc-etienne.vargenau@nokia.com
description = Validator against versions 1.0 and 1.1 of the OpenChain Telco SBOM Guide
Expand All @@ -17,8 +17,9 @@ classifiers =
Topic :: Communications :: Telephony
Topic :: Communications
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
license = "Apache-2.0"
license-files = ["LICENSE"]

[options]
package_dir =
Expand All @@ -28,11 +29,11 @@ include_package_data = True
python_requires = >=3.11
zip_safe = True
install_requires =
spdx-tools>=0.8.3
spdx-tools>=0.8.5
requests>=2.32.4
prettytable>=3.16.0
packageurl-python>=0.17.1
ntia-conformance-checker>=3.2.0
packageurl-python>=0.17.6
ntia-conformance-checker>=4.0.0
validators>=0.35.0
[options.entry_points]
console_scripts =
Expand Down
Loading