Skip to content

Commit a6504d6

Browse files
committed
fix(exports): Add missing VulnerabilityReference to exports
Signed-off-by: Helio Chissini de Castro <dev@heliocastro.info>
1 parent bbf7c80 commit a6504d6

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "uv_build"
44

55
[project]
66
name = "python-ort"
7-
version = "0.6.0"
7+
version = "0.6.1"
88
description = "A Python Ort model serialization library"
99
readme = "README.md"
1010
license = "MIT"
@@ -25,6 +25,9 @@ classifiers = [
2525
"Topic :: Software Development :: Libraries :: Python Modules",
2626
]
2727

28+
[tool.uv]
29+
index-url = "https://pypi.org/simple"
30+
2831
[tool.uv.build-backend]
2932
module-name = "ort"
3033
module-root = "src"

src/ort/models/vulnerabilities/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
# SPDX-License-Identifier: MIT
33

44
from .vulnerability import Vulnerability
5+
from .vulnerability_reference import VulnerabilityReference
56

67
__all__ = [
78
"Vulnerability",
9+
"VulnerabilityReference",
810
]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)