Skip to content

Commit 9cd9f8a

Browse files
committed
Remove code to generate conformance table specific to v1.0
Signed-off-by: Norwin Schnyder <norwin.schnyder+github@gmail.com>
1 parent b078dcf commit 9cd9f8a

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

hack/mkdocs-generate-conformance.py

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -89,19 +89,15 @@ def generate_conformance_tables(reports, currVersion, mkdocsConfig):
8989
gateway_tls_table = pandas.DataFrame()
9090
gateway_grpc_table = pandas.DataFrame()
9191

92-
if currVersion != 'v1.0.0':
93-
gateway_http_table = generate_profiles_report(reports, 'GATEWAY-HTTP',currVersion)
92+
gateway_http_table = generate_profiles_report(reports, 'GATEWAY-HTTP',currVersion)
9493

95-
gateway_grpc_table = generate_profiles_report(reports, 'GATEWAY-GRPC',currVersion)
96-
gateway_grpc_table = gateway_grpc_table.rename_axis('Organization')
94+
gateway_grpc_table = generate_profiles_report(reports, 'GATEWAY-GRPC',currVersion)
95+
gateway_grpc_table = gateway_grpc_table.rename_axis('Organization')
9796

98-
gateway_tls_table = generate_profiles_report(reports, 'GATEWAY-TLS',currVersion)
99-
gateway_tls_table = gateway_tls_table.rename_axis('Organization')
97+
gateway_tls_table = generate_profiles_report(reports, 'GATEWAY-TLS',currVersion)
98+
gateway_tls_table = gateway_tls_table.rename_axis('Organization')
10099

101-
mesh_http_table = generate_profiles_report(reports, 'MESH-HTTP',currVersion)
102-
else:
103-
gateway_http_table = generate_profiles_report(reports, "HTTP",currVersion)
104-
mesh_http_table = generate_profiles_report(reports, "MESH",currVersion)
100+
mesh_http_table = generate_profiles_report(reports, 'MESH-HTTP',currVersion)
105101

106102
gateway_http_table = gateway_http_table.rename_axis('Organization')
107103
mesh_http_table = mesh_http_table.rename_axis('Organization')

0 commit comments

Comments
 (0)