Skip to content

Commit 82992d2

Browse files
committed
Fix pypi release
1 parent 8a6f7f1 commit 82992d2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
env: []
3232
# Override install, and script to no-ops
3333
before_install: true
34-
install: true
34+
install:
35+
- travis_retry pip install -U .
36+
- travis_retry pip install -r dev-requirements.txt
3537
before_script: true
3638
script: echo "Releasing to PyPI..."
3739
after_success: true

flask_apispec/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from flask_apispec.extension import FlaskApiSpec
55
from flask_apispec.utils import Ref
66

7-
__version__ = '0.6.0'
7+
__version__ = '0.6.0.post0'
88
__all__ = [
99
'doc',
1010
'wrap_with',

0 commit comments

Comments
 (0)