Skip to content

Commit 5f4d378

Browse files
committed
Compatibility with openapi v1.0.0rc1
1 parent 8b47a69 commit 5f4d378

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ language: python
22
cache: pip
33
sudo: false
44
env:
5-
- APISPEC_VERSION="==1.0.0b5"
5+
- APISPEC_VERSION="==1.0.0rc1"
66
- APISPEC_VERSION=""
77
- MARSHMALLOW_VERSION="==2.13.0"
88
- MARSHMALLOW_VERSION=""

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'flask>=0.10.1',
1010
'marshmallow>=2.0.0',
1111
'webargs>=0.18.0',
12-
'apispec==1.0.0b5',
12+
'apispec==1.0.0rc1',
1313
]
1414

1515
def find_version(fname):

tests/test_openapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
@pytest.fixture()
1515
def marshmallow_plugin():
16-
return MarshmallowPlugin()
16+
return MarshmallowPlugin(schema_name_resolver=lambda x: None)
1717

1818
@pytest.fixture
1919
def spec(marshmallow_plugin):

0 commit comments

Comments
 (0)