Skip to content

Commit 7c20c8e

Browse files
authored
chore(deps)!: py-serializable==^1.1.1 -> ^2.0.0 (#775)
bump to `py-serializable` v2.0.0: <https://github.com/madpah/serializable/releases/tag/v2.0.0> This is considered a breaking change, as downstream users might rely on the same package's previous version. Signed-off-by: Jan Kowalleck <[email protected]>
1 parent fd9b755 commit 7c20c8e

19 files changed

+23
-23
lines changed

cyclonedx/model/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from warnings import warn
3434
from xml.etree.ElementTree import Element as XmlElement # nosec B405
3535

36-
import serializable
36+
import py_serializable as serializable
3737
from sortedcontainers import SortedSet
3838

3939
from .._internal.compare import ComparableTuple as _ComparableTuple

cyclonedx/model/bom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from uuid import UUID, uuid4
2323
from warnings import warn
2424

25-
import serializable
25+
import py_serializable as serializable
2626
from sortedcontainers import SortedSet
2727

2828
from .._internal.compare import ComparableTuple as _ComparableTuple

cyclonedx/model/bom_ref.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from typing import TYPE_CHECKING, Any, Optional
2020

21-
import serializable
21+
import py_serializable as serializable
2222

2323
from ..exception.serialization import CycloneDxDeserializationException, SerializationOfUnexpectedValueException
2424

cyclonedx/model/component.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from warnings import warn
2323

2424
# See https://github.com/package-url/packageurl-python/issues/65
25-
import serializable
25+
import py_serializable as serializable
2626
from packageurl import PackageURL
2727
from sortedcontainers import SortedSet
2828

cyclonedx/model/contact.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from typing import Any, Iterable, Optional, Union
2020

21-
import serializable
21+
import py_serializable as serializable
2222
from sortedcontainers import SortedSet
2323

2424
from .._internal.bom_ref import bom_ref_from_str as _bom_ref_from_str

cyclonedx/model/crypto.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from enum import Enum
3030
from typing import Any, Iterable, Optional
3131

32-
import serializable
32+
import py_serializable as serializable
3333
from sortedcontainers import SortedSet
3434

3535
from .._internal.compare import ComparableTuple as _ComparableTuple

cyclonedx/model/definition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import re
1919
from typing import TYPE_CHECKING, Any, Iterable, Optional, Union
2020

21-
import serializable
21+
import py_serializable as serializable
2222
from sortedcontainers import SortedSet
2323

2424
from .._internal.bom_ref import bom_ref_from_str as _bom_ref_from_str

cyclonedx/model/dependency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from abc import ABC, abstractmethod
2020
from typing import Any, Iterable, List, Optional, Set
2121

22-
import serializable
22+
import py_serializable as serializable
2323
from sortedcontainers import SortedSet
2424

2525
from .._internal.compare import ComparableTuple as _ComparableTuple

cyclonedx/model/impact_analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
from enum import Enum
3030

31-
import serializable
31+
import py_serializable as serializable
3232

3333

3434
@serializable.serializable_enum

cyclonedx/model/issue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from enum import Enum
1919
from typing import Any, Iterable, Optional
2020

21-
import serializable
21+
import py_serializable as serializable
2222
from sortedcontainers import SortedSet
2323

2424
from .._internal.compare import ComparableTuple as _ComparableTuple

0 commit comments

Comments
 (0)