Skip to content

Commit

Permalink
Merge a44736c into d2ecc82
Browse files Browse the repository at this point in the history
  • Loading branch information
barrybarrette committed Oct 13, 2020
2 parents d2ecc82 + a44736c commit 6c7dfef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ after_sucess:

deploy:
- provider: pypi
distributions: "sdist bdist_wheel"
user: __token__
password:
secure: "ggX1+2Jz5JnO+f6lXuAy4iemN4QJV9I4Qed/Uw6Wh3uUkRhN7ZQKY77tj0rAUBYIBUPxpJNTgiBupTGxYQ8HiOVxs7l9Y9Re2ZQZXbnTD4uecdjz7U+0PE89UjZR0CzrSaQqcOxVD/TywR86hbMVKDfQxpWzPGkR/fT0He/jA4hpxwx4xBWLwWUmJ0I+mU8vqzC4OxUFNKeklnlTKevp6KQFLeATIiup/PiIFBho5NqoNEbuxmKX5v8drkn6hC1fmZZvdmsJlscAq82Pt/qlH+mwrDAhHKoYrJkaXyMCuPEkR9lonJowqD8JvXN2VMlsBg7nqi376K7pTehO45xsimG5wD4ICwHaHg5nL+0YDlceXBzs4mC1/Kl4bYJmBD8rPK05+Flx3oF77vVOcxegeiB5tl9V9z/ghGx6GilpI8RDgomkn+GhZko0s5kjmulttY3Cj2Hrj/AMsv4cbsEfT6kHc9V7gJQuiEkFVr1hHPrUW1NcXQppUBME04zMe+BfyXRdAKbyVKLZK/78JZv5vvBdR34Vc0zu6lWMU/PF9lkcW69l0NquMlATqQVIbBYxepS7aY+zG6Ocv/BnbHzCvrGUXo5x+rfH0fxiKv0sQn+ji6KDR3UlFuZNTdqoRAAKzMuOBPtxrUVH51+0DfCnpQMN0IPAh1ZMYUyGatmzB+U="
Expand Down
2 changes: 1 addition & 1 deletion flask_redoc/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""flask_redoc version file."""
__version__ = '0.2.0'
__version__ = '0.2.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
description=__doc__,
long_description=readme,
long_description_content_type='text/markdown',
packages=find_packages(),
packages=list(filter(lambda pkg: 'tests' not in pkg, find_packages())),
include_package_data=True,
zip_safe=False,
platforms='any',
Expand Down

0 comments on commit 6c7dfef

Please sign in to comment.