Skip to content

Commit 0657580

Browse files
committed
bump swagger-ui to 3.52.0
1 parent ce8ae37 commit 0657580

27 files changed

+67
-167
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def read_version(package):
1515
with open(os.path.join(package, '__init__.py'), 'r') as fd:
1616
for line in fd:
1717
if line.startswith('__version__ = '):
18-
return line.split()[-1].strip().strip("'")
18+
return line.split()[-1].strip().strip("'").strip('"')
1919

2020

2121
version = read_version('swagger_ui_bundle')

swagger_ui_bundle/__init__.py

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,23 @@
22

33
import os
44

5-
__author__ = 'Daniel Grossmann-Kavanagh'
6-
__version__ = '0.0.8'
5+
__author__ = "Daniel Grossmann-Kavanagh"
6+
__version__ = '0.0.9'
7+
78

89
def get_path(rel):
910
return os.path.join(
10-
os.path.abspath(
11-
os.path.dirname(
12-
os.path.realpath(__file__)
13-
)
14-
),
15-
rel
11+
os.path.abspath(os.path.dirname(os.path.realpath(__file__))), rel
1612
)
1713

14+
1815
swagger_ui_2_2_10_path = get_path("vendor/swagger-ui-2.2.10")
1916

20-
swagger_ui_3_30_0_path = get_path("vendor/swagger-ui-3.30.0")
17+
swagger_ui_3_52_0_path = get_path("vendor/swagger-ui-3.52.0")
2118

2219
# latest major versions
2320
swagger_ui_2_path = swagger_ui_2_2_10_path
24-
swagger_ui_3_path = swagger_ui_3_30_0_path
21+
swagger_ui_3_path = swagger_ui_3_52_0_path
2522

2623
# default to swagger 3
2724
swagger_ui_path = swagger_ui_3_path

swagger_ui_bundle/vendor/swagger-ui-3.30.0/swagger-ui-bundle.js

Lines changed: 0 additions & 92 deletions
This file was deleted.

swagger_ui_bundle/vendor/swagger-ui-3.30.0/swagger-ui-bundle.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

swagger_ui_bundle/vendor/swagger-ui-3.30.0/swagger-ui-standalone-preset.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

swagger_ui_bundle/vendor/swagger-ui-3.30.0/swagger-ui-standalone-preset.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

swagger_ui_bundle/vendor/swagger-ui-3.30.0/swagger-ui.css

Lines changed: 0 additions & 4 deletions
This file was deleted.

swagger_ui_bundle/vendor/swagger-ui-3.30.0/swagger-ui.css.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

swagger_ui_bundle/vendor/swagger-ui-3.30.0/swagger-ui.js

Lines changed: 0 additions & 9 deletions
This file was deleted.

swagger_ui_bundle/vendor/swagger-ui-3.30.0/swagger-ui.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)