Skip to content

Commit 1c0d851

Browse files
Merge pull request #167 from ndsev/release/2.0.2
Release 2.0.2
2 parents 51ad2e1 + 4b6be4e commit 1c0d851

4 files changed

Lines changed: 3 additions & 31 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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.
1212
if(NOT DEFINED ZSWAG_VERSION)
13-
set(ZSWAG_VERSION 2.0.1)
13+
set(ZSWAG_VERSION 2.0.2)
1414
endif()
1515

1616
option(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)
7272
endif()
7373

74-

libs/pyzswagcl/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

libs/zswag/app.py

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,6 @@
1010
instead.
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-
4013
import connexion
4114
import os
4215
import inspect

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
connexion~=2.14.2
1+
connexion~=2.15.1
22
requests
33
zserio<3.0.0
44
pyyaml

0 commit comments

Comments
 (0)