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 2828from packageurl import PackageURL
2929from py_serializable .helpers import BaseHelper
3030
31- if sys .version_info > (3 , 13 ):
31+ if sys .version_info >= (3 , 13 ):
3232 from warnings import deprecated
3333else :
3434 from typing_extensions import deprecated
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ sortedcontainers = "^2.4.0"
7474license-expression = " ^30"
7575jsonschema = { version = " ^4.18" , extras =[' format' ], optional =true }
7676lxml = { 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...
7778
7879[tool .poetry .extras ]
7980validation = [" jsonschema" , " lxml" ]
You can’t perform that action at this time.
0 commit comments