Skip to content

Commit 383b1b6

Browse files
committed
update swagger-ui to 3.20.5
1 parent a38f93c commit 383b1b6

27 files changed

+152
-193
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[aliases]
2+
test=pytest

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ def finalize_options(self):
4242
'-sv',
4343
'--pep8',
4444
'--flakes',
45-
'--cov', 'openapi_spec_validator',
46-
'--cov-report', 'term-missing',
4745
]
4846
self.test_suite = True
4947

@@ -64,13 +62,12 @@ def run_tests(self):
6462
url='https://github.com/dtkav/swagger_ui_bundle',
6563
keywords='swagger-ui',
6664
license='Apache License Version 2.0',
67-
setup_requires=['flake8'],
65+
setup_requires=['pytest-runner', 'flake8'],
6866
install_requires=install_requires,
6967
tests_require=[
7068
"pytest",
7169
"pytest-pep8",
7270
"pytest-flakes",
73-
"pytest-cov",
7471
"tox",
7572
],
7673
classifiers=[

swagger_ui_bundle/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44

55
__author__ = 'Daniel Grossmann-Kavanagh'
6-
__version__ = '0.0.2'
6+
__version__ = '0.0.3'
77

88
def get_path(rel):
99
return os.path.join(
@@ -17,11 +17,11 @@ def get_path(rel):
1717

1818
swagger_ui_2_2_10_path = get_path("vendor/swagger-ui-2.2.10")
1919

20-
swagger_ui_3_17_1_path = get_path("vendor/swagger-ui-3.17.1")
20+
swagger_ui_3_20_5_path = get_path("vendor/swagger-ui-3.20.5")
2121

2222
# latest major versions
2323
swagger_ui_2_path = swagger_ui_2_2_10_path
24-
swagger_ui_3_path = swagger_ui_3_17_1_path
24+
swagger_ui_3_path = swagger_ui_3_20_5_path
2525

2626
# default to swagger 3
2727
swagger_ui_path = swagger_ui_3_path
-445 Bytes
Binary file not shown.
-1.11 KB
Binary file not shown.

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

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

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

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)