File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
1010# without requiring CMakeLists.txt updates between releases.
1111# For official releases, this value should match the git tag.
1212if (NOT DEFINED ZSWAG_VERSION)
13- set (ZSWAG_VERSION 2.0.1 )
13+ set (ZSWAG_VERSION 2.0.2 )
1414endif ()
1515
1616option (ZSWAG_BUILD_WHEELS "Enable zswag whl-output to WHEEL_DEPLOY_DIRECTORY." ON )
@@ -71,4 +71,3 @@ if (ZSWAG_BUILD_WHEELS)
7171 add_subdirectory (libs/zswag/test )
7272endif ()
7373
74-
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ add_wheel(pyzswagcl
8181 TARGET_DEPENDENCIES
8282 zswagcl
8383 MODULE_DEPENDENCIES
84- "connexion~=2.14.2 "
84+ "connexion~=2.15.1 "
8585 requests
8686 "zserio<3.0.0"
8787 pyyaml
Original file line number Diff line number Diff line change 1010instead.
1111"""
1212
13- import ast
14-
15- # Connexion 2.14 depends on Werkzeug 2.2, which still constructs and reads the
16- # old literal AST node classes removed in Python 3.14.
17- if not hasattr (ast , "Str" ):
18- class _CompatStr (ast .Constant ):
19- def __init__ (self , s = "" , ** kwargs ):
20- super ().__init__ (value = s , ** kwargs )
21- self .s = s
22-
23- ast .Str = _CompatStr
24-
25- if not hasattr (ast , "Num" ):
26- class _CompatNum (ast .Constant ):
27- def __init__ (self , n = 0 , ** kwargs ):
28- super ().__init__ (value = n , ** kwargs )
29- self .n = n
30-
31- ast .Num = _CompatNum
32-
33- if not hasattr (ast , "NameConstant" ):
34- class _CompatNameConstant (ast .Constant ):
35- def __init__ (self , value = None , ** kwargs ):
36- super ().__init__ (value = value , ** kwargs )
37-
38- ast .NameConstant = _CompatNameConstant
39-
4013import connexion
4114import os
4215import inspect
Original file line number Diff line number Diff line change 1- connexion ~= 2.14.2
1+ connexion ~= 2.15.1
22requests
33zserio < 3.0.0
44pyyaml
You can’t perform that action at this time.
0 commit comments