File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 28
28
from packageurl import PackageURL
29
29
from py_serializable .helpers import BaseHelper
30
30
31
- if sys .version_info > (3 , 13 ):
31
+ if sys .version_info >= (3 , 13 ):
32
32
from warnings import deprecated
33
33
else :
34
34
from typing_extensions import deprecated
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ sortedcontainers = "^2.4.0"
74
74
license-expression = " ^30"
75
75
jsonschema = { version = " ^4.18" , extras =[' format' ], optional =true }
76
76
lxml = { version =" >=4,<7" , optional =true }
77
+ typing_extensions = { version =" ^4.6" , python = " <3.13" } # for `@deprecated` - which was added in v4.5 but this version appesrs to be broken...
77
78
78
79
[tool .poetry .extras ]
79
80
validation = [" jsonschema" , " lxml" ]
You can’t perform that action at this time.
0 commit comments