5 Commits

Author SHA1 Message Date
Mike Terzo
5e4f1518ab Merge pull request #374 from mterzo/release_0.2.2
Prepare for release 0.2.2
2017-03-20 13:59:12 -04:00
Mike Terzo
6ae2e9d0c5 Prepare for release 0.2.2 2017-03-20 13:48:14 -04:00
Tim Meusel
db8f62cc0b Merge pull request #373 from mterzo/rel_0.2
Bounded the latest version of Werkzeug
2017-03-20 18:45:51 +01:00
Mike Terzo
a038d86d2c Newest release of Werkzeug is not compatible with puppetboard. 2017-03-20 13:37:59 -04:00
Mike Terzo
1dcf1ae154 Travis failure definition has changed.
Do not test unpinned versions of pip packages.
2017-03-20 13:37:22 -04:00
4 changed files with 7 additions and 17 deletions

View File

@@ -5,23 +5,8 @@ python:
- "2.7"
- "3.5"
- "3.6"
env:
- PINNED=TRUE
- PINNED=FALSE
matrix:
allow_failures:
- python: 2.6
env: PINNED=FALSE
- python: 2.7
env: PINNED=FALSE
- python: 3.5
env: PINNED=FALSE
- python: 3.6
env: PINNED=FALSE
install:
- if [ "${PINNED}" == "FALSE" ]; then python scripts/unpin.py; fi
- pip install -r requirements.txt
- pip install -U -r requirements-test.txt
- pip install -q coverage coveralls --use-wheel

View File

@@ -4,6 +4,10 @@ Changelog
This is the changelog for Puppetboard.
0.2.2
=====
* Ensure Werkzeug <= 0.11.5
0.2.1
=====

View File

@@ -87,7 +87,7 @@
{% endfor %}
</div>
</div>
<div class="item right"><a href="https://github.com/voxpupuli/puppetboard" target="_blank">v0.2.1</a></div>
<div class="item right"><a href="https://github.com/voxpupuli/puppetboard" target="_blank">v0.2.2</a></div>
</div>
<div class="ui grid padding-bottom">
<div class="one wide column"></div>

View File

@@ -9,7 +9,7 @@ if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
VERSION = "0.2.1"
VERSION = "0.2.2"
with codecs.open('README.rst', encoding='utf-8') as f:
README = f.read()
@@ -33,6 +33,7 @@ setup(
"Flask >= 0.10.1",
"Flask-WTF >= 0.12, <= 0.13",
"WTForms >= 2.0, < 3.0",
"Werkzeug >=0.7, <= 0.11.5",
"pypuppetdb >= 0.3.0, < 0.4.0",
],
keywords="puppet puppetdb puppetboard",